Skip to content

Commit

Permalink
core: set max tx size down to 2 slots (64KB)
Browse files Browse the repository at this point in the history
  • Loading branch information
holiman authored and gzliudan committed May 13, 2024
1 parent b7f4362 commit d972bbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/tx_pool.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 = 4 * txSlotSize // 128KB, don't bump without chunking support
txMaxSize = 2 * txSlotSize // 64KB, don't bump without EIP-2464 support
)

var (
Expand Down

0 comments on commit d972bbd

Please sign in to comment.