Преглед изворни кода

core: bump txpool tx max size to 128KB

Martin Holst Swende пре 5 година
родитељ
комит
55a73f556a
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      core/tx_pool.go

+ 1 - 1
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 (