From d59b968c7b449382619b48d28a827774fad0957c Mon Sep 17 00:00:00 2001 From: Bartek Tofel Date: Tue, 30 Apr 2024 14:07:23 +0200 Subject: [PATCH] try call contract 1000 times --- integration-tests/wrappers/contract_caller.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration-tests/wrappers/contract_caller.go b/integration-tests/wrappers/contract_caller.go index 35598a6a013..31f41c5c267 100644 --- a/integration-tests/wrappers/contract_caller.go +++ b/integration-tests/wrappers/contract_caller.go @@ -155,8 +155,8 @@ func (w *WrappedContractBackend) CallContract(ctx context.Context, msg ethereum. return false }), - retry.Attempts(uint(10)), - retry.Delay(1*time.Second), + retry.Attempts(uint(1000)), + retry.Delay(5*time.Second), retry.OnRetry(func(n uint, err error) { w.l.Info(). Str("Attempt", fmt.Sprintf("%d/%d", n+1, 10)).