From aa59d344b37422beeb42a13ffb9f03527c069e09 Mon Sep 17 00:00:00 2001 From: Joshua Colvin Date: Fri, 1 Dec 2023 13:53:36 -0700 Subject: [PATCH] Fix chain parameter default Chain parameters were updated to prepare for execution split, but one mention was missed --- cmd/nitro/nitro.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/nitro/nitro.go b/cmd/nitro/nitro.go index cee86ab40a..cf2155444a 100644 --- a/cmd/nitro/nitro.go +++ b/cmd/nitro/nitro.go @@ -839,7 +839,7 @@ func applyChainParameters(ctx context.Context, k *koanf.Koanf, chainId uint64, c } safeBatchSize := l2MaxTxSize - bufferSpace chainDefaults["node.batch-poster.max-size"] = safeBatchSize - chainDefaults["node.sequencer.max-tx-data-size"] = safeBatchSize - bufferSpace + chainDefaults["execution.sequencer.max-tx-data-size"] = safeBatchSize - bufferSpace } if chainInfo.DasIndexUrl != "" { chainDefaults["node.batch-poster.max-size"] = 1000000