Merge pull request #20835 from holiman/bump

core: bump txpool tx max size to 128KB
This commit is contained in:
Péter Szilágyi 2020-03-30 12:14:53 +03:00 committed by GitHub
commit 84f4975520
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 (