From aeec3439b0d188d7f38dc6b7979575cdb2766c52 Mon Sep 17 00:00:00 2001 From: artpav <19916123+artemijspavlovs@users.noreply.github.com> Date: Wed, 20 Nov 2024 10:26:47 +0200 Subject: [PATCH] feat(config): default max proof time should be 5s (#1245) --- config/defaults.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/defaults.go b/config/defaults.go index 828994e1b..e3f8f776e 100644 --- a/config/defaults.go +++ b/config/defaults.go @@ -26,7 +26,7 @@ func DefaultConfig(home string) *NodeConfig { BlockManagerConfig: BlockManagerConfig{ BlockTime: 200 * time.Millisecond, MaxIdleTime: 3600 * time.Second, - MaxProofTime: 100 * time.Second, + MaxProofTime: 5 * time.Second, BatchSubmitTime: 3600 * time.Second, BatchSkew: 10, BatchSubmitBytes: 500000,