good morning!!!!

Skip to content
Snippets Groups Projects
Commit 8d9798d6 authored by Martin Holst Swende's avatar Martin Holst Swende Committed by Igor Mandrigin
Browse files

core: set max tx size down to 2 slots (64KB)

parent 96f85c3b
No related branches found
No related tags found
No related merge requests found
......@@ -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 (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment