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
1 changed files with 1 additions and 1 deletions

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)