From d972bbd681e9726ab2fe7df8c5f8849d366242b4 Mon Sep 17 00:00:00 2001 From: Martin Holst Swende Date: Tue, 14 Jan 2020 11:49:36 +0100 Subject: [PATCH] core: set max tx size down to 2 slots (64KB) --- core/tx_pool.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/tx_pool.go b/core/tx_pool.go index 020ad49ef8..148638fd75 100644 --- a/core/tx_pool.go +++ b/core/tx_pool.go @@ -50,7 +50,7 @@ const ( // non-trivial consequences: larger transactions are significantly harder and // more expensive to propagate; larger transactions also take more resources // to validate whether they fit into the pool or not. - txMaxSize = 4 * txSlotSize // 128KB, don't bump without chunking support + txMaxSize = 2 * txSlotSize // 64KB, don't bump without EIP-2464 support ) var (