From 064e5f77a6bd6291ab63b3668d3276708410948d Mon Sep 17 00:00:00 2001 From: tanlang Date: Tue, 12 Dec 2023 16:35:15 +0800 Subject: [PATCH] feat: reset msg estimating timeout to 30s --- config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.go b/config/config.go index 26d17504..774f1228 100644 --- a/config/config.go +++ b/config/config.go @@ -67,7 +67,7 @@ const ( const ( DefaultTimeout = time.Second SignMessageTimeout = time.Second * 3 - EstimateMessageTimeout = time.Second * 5 + EstimateMessageTimeout = time.Second * 30 ) type MessageServiceConfig struct {