Add a size limit for tx_extra in tx pool

This commit is contained in:
tevador 2023-02-05 21:53:32 +01:00
parent 50aa0e8b7f
commit 3771641fc5
6 changed files with 22 additions and 1 deletions

View file

@ -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
{