diff --git a/arbnode/batch_poster.go b/arbnode/batch_poster.go index ec097b13c..00a19a54a 100644 --- a/arbnode/batch_poster.go +++ b/arbnode/batch_poster.go @@ -149,7 +149,7 @@ type BatchPosterDangerousConfig struct { type BatchPosterConfig struct { Enable bool `koanf:"enable"` DisableDapFallbackStoreDataOnChain bool `koanf:"disable-dap-fallback-store-data-on-chain" reload:"hot"` - EnableEigenDAFailover bool `koanf:"eigenda-failover-to-anytrust" reload:"hot"` + EnableEigenDAFailover bool `koanf:"eigenda-failover-to-anytrust" reload:"hot"` // Max batch size. MaxSize int `koanf:"max-size" reload:"hot"` // Maximum 4844 blob enabled batch size. @@ -248,8 +248,8 @@ var DefaultBatchPosterConfig = BatchPosterConfig{ DisableDapFallbackStoreDataOnChain: false, // This default is overridden for L3 chains in applyChainParameters in cmd/nitro/nitro.go EnableEigenDAFailover: false, - MaxSize: 100000, - MaxEigenDABatchSize: 16_777_216, + MaxSize: 100000, + MaxEigenDABatchSize: 16_777_216, // Try to fill 3 blobs per batch Max4844BatchSize: blobs.BlobEncodableData*(params.MaxBlobGasPerBlock/params.BlobTxBlobGasPerBlob)/2 - 2000, PollInterval: time.Second * 10, diff --git a/system_tests/das_test.go b/system_tests/das_test.go index 4cc9aa8a2..9f4d153b6 100644 --- a/system_tests/das_test.go +++ b/system_tests/das_test.go @@ -188,7 +188,7 @@ func checkBatchPosting(t *testing.T, ctx context.Context, l1client, l2clientA *e for _, client := range l2ClientsToCheck { _, err = WaitForTx(ctx, client, tx.Hash(), time.Second*30) Require(t, err) - + l2balance, err := client.BalanceAt(ctx, l2info.GetAddress("User2"), nil) Require(t, err)