From 8d0e2fb4948d0c3766d5009befe65ff3036fbdb8 Mon Sep 17 00:00:00 2001 From: Oleg Nikonychev Date: Tue, 5 Nov 2024 16:50:27 +0400 Subject: [PATCH] fix: eth api test --- eth/rpc/rpcapi/eth_api_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/rpc/rpcapi/eth_api_test.go b/eth/rpc/rpcapi/eth_api_test.go index e20513f5e..1a599d2f1 100644 --- a/eth/rpc/rpcapi/eth_api_test.go +++ b/eth/rpc/rpcapi/eth_api_test.go @@ -193,7 +193,7 @@ func (s *NodeSuite) Test_EstimateGas() { } { msg.Value = msgValue _, err = s.ethClient.EstimateGas(context.Background(), msg) - s.ErrorContains(err, "StateDB: wei amount is too small") + s.ErrorContains(err, "wei amount is too small") } }