From 405add45625c7f5933da01c4002d7e6fe0d202e3 Mon Sep 17 00:00:00 2001 From: wanwiset25 Date: Fri, 28 Jun 2024 10:28:25 +0400 Subject: [PATCH] bump tx 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 64359a972bbc..1094a5238306 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 = 2 * txSlotSize // 64KB, don't bump without EIP-2464 support + txMaxSize = 4 * txSlotSize ) var (