aboutsummaryrefslogtreecommitdiff
path: root/src/cryptonote_basic/cryptonote_basic.h
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2023-04-25 11:21:22 -0400
committerluigi1111 <luigi1111w@gmail.com>2023-04-25 11:21:22 -0400
commit5387018adeba1899a1bc3935b759ad9958d7dfe0 (patch)
treed0a63622e11f579596bf73df0c97d044b4900332 /src/cryptonote_basic/cryptonote_basic.h
parentMerge pull request #8765 (diff)
parentcryptonote::transaction_prefix: fix IDE parsing error (diff)
downloadmonero-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.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 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)