From 48239d41c54aced2d8a788d1c997cfb7b3cd43d4 Mon Sep 17 00:00:00 2001 From: Sergi Rene Date: Tue, 13 Aug 2024 12:45:38 +0200 Subject: [PATCH] fix --- config/config_test.go | 2 +- config/toml.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/config_test.go b/config/config_test.go index 2b25424b6..e02853627 100644 --- a/config/config_test.go +++ b/config/config_test.go @@ -193,7 +193,7 @@ func fullNodeConfig() config.NodeConfig { MaxIdleTime: 20 * time.Second, MaxProofTime: 20 * time.Second, BatchSubmitTime: 20 * time.Second, - BatchSkewBlocks: 10, + BatchSkewBlocks: 30, BatchSubmitBytes: 10000, }, DAConfig: "da-config", diff --git a/config/toml.go b/config/toml.go index 3a6660ae5..76625a229 100644 --- a/config/toml.go +++ b/config/toml.go @@ -70,7 +70,7 @@ block_time = "{{ .BlockManagerConfig.BlockTime }}" # block production interval in case of no transactions ("0s" produces empty blocks) max_idle_time = "{{ .BlockManagerConfig.MaxIdleTime }}" max_proof_time = "{{ .BlockManagerConfig.MaxProofTime }}" -max_supported_block_skew = {{ .BlockManagerConfig.MaxBlockSkew }} +batch_skew_blocks = {{ .BlockManagerConfig.BatchSkewBlocks }} # triggers to submit batch to DA and settlement (both required)