1
mirror of https://github.com/monero-project/monero synced 2024-09-27 09:30:19 +02:00

cryptonote::transaction_prefix: fix IDE parsing error

This commit is contained in:
koe 2023-03-09 15:18:21 -06:00
parent c5d10a4ac4
commit 2eaa523af1

View File

@ -182,7 +182,7 @@ namespace cryptonote
BEGIN_SERIALIZE()
VARINT_FIELD(version)
if(version == 0 || CURRENT_TRANSACTION_VERSION < version) return false;
if((version == 0 || CURRENT_TRANSACTION_VERSION < version)) return false;
VARINT_FIELD(unlock_time)
FIELD(vin)
FIELD(vout)