From 8bd8b33fcb6f09bcaab79a8d6796c51e94ead112 Mon Sep 17 00:00:00 2001 From: Pratik Patil Date: Tue, 13 May 2025 15:12:47 +0530 Subject: [PATCH] accounts/abi/bind/backends: removed the second config check from TestNewSimulatedBackend (ref - https://github.com/ethereum/go-ethereum/pull/31097) --- accounts/abi/bind/backends/simulated_test.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/accounts/abi/bind/backends/simulated_test.go b/accounts/abi/bind/backends/simulated_test.go index 7fa1faf939..bacc8851ec 100644 --- a/accounts/abi/bind/backends/simulated_test.go +++ b/accounts/abi/bind/backends/simulated_test.go @@ -147,10 +147,6 @@ func TestNewSimulatedBackend(t *testing.T) { t.Errorf("expected sim config to equal params.AllEthashProtocolChanges, got %v", sim.config) } - if sim.blockchain.Config() != params.AllEthashProtocolChanges { - t.Errorf("expected sim blockchain config to equal params.AllEthashProtocolChanges, got %v", sim.config) - } - stateDB, _ := sim.blockchain.State() bal := stateDB.GetBalance(testAddr)