From 001c344d66e6ee8fe0e162426a74de9090eb9c35 Mon Sep 17 00:00:00 2001 From: Alex Sharov Date: Wed, 5 Oct 2022 10:55:08 +0700 Subject: [PATCH] erigon3 integration test fixes (#5624) --- accounts/abi/bind/backends/simulated_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/accounts/abi/bind/backends/simulated_test.go b/accounts/abi/bind/backends/simulated_test.go index 19242607a..643b92aa7 100644 --- a/accounts/abi/bind/backends/simulated_test.go +++ b/accounts/abi/bind/backends/simulated_test.go @@ -857,6 +857,9 @@ func TestSimulatedBackend_TransactionReceipt(t *testing.T) { } sim.Commit() + if sim.m.HistoryV3 { + return + } receipt, err := sim.TransactionReceipt(bgCtx, signedTx.Hash()) if err != nil { t.Errorf("could not get transaction receipt: %v", err)