mirror of
https://github.com/monero-project/monero.git
synced 2025-08-18 16:08:02 -04:00
Add a size limit for tx_extra in tx pool
This commit is contained in:
parent
50aa0e8b7f
commit
3771641fc5
6 changed files with 22 additions and 1 deletions
|
@ -206,6 +206,11 @@
|
|||
|
||||
#define DNS_BLOCKLIST_LIFETIME (86400 * 8)
|
||||
|
||||
//The limit is enough for the mandatory transaction content with 16 outputs (547 bytes),
|
||||
//a custom tag (1 byte) and up to 32 bytes of custom data for each recipient.
|
||||
// (1+32) + (1+1+16*32) + (1+16*32) = 1060
|
||||
#define MAX_TX_EXTRA_SIZE 1060
|
||||
|
||||
// New constants are intended to go here
|
||||
namespace config
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue