Unverified Commit 84f49755 authored by Péter Szilágyi's avatar Péter Szilágyi Committed by GitHub

Merge pull request #20835 from holiman/bump

core: bump txpool tx max size to 128KB
parents 5d7e5b00 55a73f55
......@@ -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 (
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment