From 069c83ef32efb8d8298fd7f90d8b441694d51aab Mon Sep 17 00:00:00 2001 From: MoneroOcean Date: Wed, 23 Oct 2024 17:51:50 +0300 Subject: [PATCH] Fixed previous commit --- src/cryptonote_basic/cryptonote_basic.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cryptonote_basic/cryptonote_basic.h b/src/cryptonote_basic/cryptonote_basic.h index 75d1d14..d75b28f 100644 --- a/src/cryptonote_basic/cryptonote_basic.h +++ b/src/cryptonote_basic/cryptonote_basic.h @@ -740,7 +740,7 @@ namespace cryptonote if (tx_type != cryptonote::salvium_transaction_type::PROTOCOL) { VARINT_FIELD(amount_burnt) if (tx_type != cryptonote::salvium_transaction_type::MINER) { - if (type == cryptonote::transaction_type::TRANSFER && version >= TRANSACTION_VERSION_N_OUTS) { + if (type == cryptonote::salvium_transaction_type::TRANSFER && version >= TRANSACTION_VERSION_N_OUTS) { FIELD(return_address_list) FIELD(return_address_change_mask) } else { @@ -924,7 +924,7 @@ namespace cryptonote output_unlock_times.clear(); collateral_indices.clear(); // SAL - tx_type = cryptonote::transaction_type::UNSET; + tx_type = cryptonote::salvium_transaction_type::UNSET; return_address = crypto::null_pkey; return_address_list.clear(); return_address_change_mask.clear();