diff --git a/core/tx_pool.go b/core/tx_pool.go
index e95496b13b6bcf29a0efde96506d0a8bc5027c27..ae6962c5d906bd02d62603dede46e2bc9b9f22e0 100644
--- a/core/tx_pool.go
+++ b/core/tx_pool.go
@@ -49,7 +49,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 (