aboutsummaryrefslogtreecommitdiff
path: root/src/cryptonote_basic
diff options
context:
space:
mode:
authorkoe <ukoe@protonmail.com>2023-03-09 15:18:21 -0600
committerkoe <ukoe@protonmail.com>2023-03-09 15:18:21 -0600
commit2eaa523af128142db21742b3a13bc1db7b0b76a3 (patch)
treee5bdb8f3fbadba52ef39f476412697545858cf47 /src/cryptonote_basic
parentMerge pull request #8737 (diff)
downloadmonero-2eaa523af128142db21742b3a13bc1db7b0b76a3.tar.xz
cryptonote::transaction_prefix: fix IDE parsing error
Diffstat (limited to 'src/cryptonote_basic')
-rw-r--r--src/cryptonote_basic/cryptonote_basic.h2
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)