diff options
author | tevador <tevador@gmail.com> | 2023-02-05 21:53:32 +0100 |
---|---|---|
committer | selsta <selsta@sent.at> | 2023-03-18 20:01:58 +0100 |
commit | 5900ed3706caa1beeef88738e7b62194280af5d9 (patch) | |
tree | 7aff8902624d7dbf8952267eee28823054e0f703 /src/cryptonote_basic | |
parent | Merge pull request #8739 (diff) | |
download | monero-5900ed3706caa1beeef88738e7b62194280af5d9.tar.xz |
Add a size limit for tx_extra in tx pool
Diffstat (limited to 'src/cryptonote_basic')
-rw-r--r-- | src/cryptonote_basic/verification_context.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cryptonote_basic/verification_context.h b/src/cryptonote_basic/verification_context.h index 34157218f..ffd07b27a 100644 --- a/src/cryptonote_basic/verification_context.h +++ b/src/cryptonote_basic/verification_context.h @@ -53,6 +53,7 @@ namespace cryptonote bool m_overspend; bool m_fee_too_low; bool m_too_few_outputs; + bool m_tx_extra_too_big; }; struct block_verification_context |