diff options
author | koe <ukoe@protonmail.com> | 2023-03-09 15:18:21 -0600 |
---|---|---|
committer | koe <ukoe@protonmail.com> | 2023-03-09 15:18:21 -0600 |
commit | 2eaa523af128142db21742b3a13bc1db7b0b76a3 (patch) | |
tree | e5bdb8f3fbadba52ef39f476412697545858cf47 /src/cryptonote_basic | |
parent | Merge pull request #8737 (diff) | |
download | monero-2eaa523af128142db21742b3a13bc1db7b0b76a3.tar.xz |
cryptonote::transaction_prefix: fix IDE parsing error
Diffstat (limited to 'src/cryptonote_basic')
-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 127958796..317773705 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) |