diff options
author | luigi1111 <luigi1111w@gmail.com> | 2023-04-25 11:21:22 -0400 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2023-04-25 11:21:22 -0400 |
commit | 5387018adeba1899a1bc3935b759ad9958d7dfe0 (patch) | |
tree | d0a63622e11f579596bf73df0c97d044b4900332 /src/cryptonote_basic/cryptonote_basic.h | |
parent | Merge pull request #8765 (diff) | |
parent | cryptonote::transaction_prefix: fix IDE parsing error (diff) | |
download | monero-5387018adeba1899a1bc3935b759ad9958d7dfe0.tar.xz |
Merge pull request #8771
2eaa523 cryptonote::transaction_prefix: fix IDE parsing error (koe)
Diffstat (limited to 'src/cryptonote_basic/cryptonote_basic.h')
-rw-r--r-- | src/cryptonote_basic/cryptonote_basic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptonote_basic/cryptonote_basic.h b/src/cryptonote_basic/cryptonote_basic.h index 2ced7d2bc..ae112c31f 100644 --- a/src/cryptonote_basic/cryptonote_basic.h +++ b/src/cryptonote_basic/cryptonote_basic.h @@ -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) |