From 7bd3aecfd6848d5820c5cc5e4aa30c9d7f32106d Mon Sep 17 00:00:00 2001 From: simsonraj Date: Thu, 4 Jul 2024 23:41:12 +0530 Subject: [PATCH] test:increasing the timeout to 50s --- core/chains/evm/client/chain_client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/chains/evm/client/chain_client.go b/core/chains/evm/client/chain_client.go index 8d1dcb6cc8c..46ecee07d9a 100644 --- a/core/chains/evm/client/chain_client.go +++ b/core/chains/evm/client/chain_client.go @@ -20,7 +20,7 @@ import ( evmtypes "github.com/smartcontractkit/chainlink/v2/core/chains/evm/types" ) -const queryTimeout = 10 * time.Second +const queryTimeout = 50 * time.Second const BALANCE_OF_ADDRESS_FUNCTION_SELECTOR = "0x70a08231" var _ Client = (*chainClient)(nil)