Skip to content

Commit

Permalink
Merge pull request #20555 from holiman/cripple_txsize
Browse files Browse the repository at this point in the history
core: set max tx size down to 2 slots (64KB)
  • Loading branch information
karalabe authored Jan 14, 2020
2 parents e9e69d6 + b2de0bd commit 8592a57
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 @@ -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 (
Expand Down

0 comments on commit 8592a57

Please sign in to comment.