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

This commit is contained in:
Martin Holst Swende 2020-01-14 11:49:36 +01:00 committed by Daniel Liu
parent b7f4362c57
commit d972bbd681

View file

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