From 55a73f556a67f496fbc78943929d91ce9832761e Mon Sep 17 00:00:00 2001 From: Martin Holst Swende Date: Mon, 30 Mar 2020 10:46:05 +0200 Subject: [PATCH] core: bump txpool tx max size to 128KB --- 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 e2137ca4f4..e4e3c41cee 100644 --- a/core/tx_pool.go +++ b/core/tx_pool.go @@ -48,7 +48,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 = 2 * txSlotSize // 64KB, don't bump without EIP-2464 support + txMaxSize = 4 * txSlotSize // 128KB ) var (