Skip to content

Commit

Permalink
fixing remaining int tests
Browse files Browse the repository at this point in the history
  • Loading branch information
skosito committed Jan 24, 2025
1 parent d023627 commit e7be8e3
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 13 deletions.
6 changes: 3 additions & 3 deletions nix/go-ethereum.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ let
in
buildGoModule rec {
pname = "go-ethereum";
version = "1.11.6";
version = "1.10.25";

src = fetchFromGitHub {
owner = "ethereum";
repo = pname;
rev = "v${version}";
sha256 = "sha256-mZ11xan3MGgaUORbiQczKrXSrxzjvQMhZbpHnEal11Y=";
sha256 = "sha256-mnf0kMfQEEQMricZJfyF7ZB/2F1dyPBx9iT2v/rGh1U=";
};

vendorHash = "sha256-rjSGR2ie5sFK2OOo4HUZ6+hrDlQuUDtyTKn0sh8jFBY=";
vendorHash = "sha256-Dj+xN8lr98LJyYr2FwJ7yUIJkUeUrr1fkcbj4hShJI0=";

doCheck = false;

Expand Down
20 changes: 12 additions & 8 deletions tests/integration_tests/expected_constants.py

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion tests/integration_tests/test_filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -701,7 +701,6 @@ def test_get_logs(cluster):


def assert_log_block(w3, log):
print("Log received for assertion:", log)
block_hash = log["blockHash"]
# check if the returned block hash is correct
# getBlockByHash
Expand Down
2 changes: 1 addition & 1 deletion tests/integration_tests/test_pruned_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def test_pruned_node(pruned):
{
"from": "0x57f96e6B86CdeFdB3d412547816a82E3E0EbF9D2",
"gas": 51406,
"input": (
"input": HexBytes(
"0xa9059cbb000000000000000000000000378c50d9264c63f3f92b806d4ee56e"
"9d86ffb3ec000000000000000000000000000000000000000000000000000000"
"000000000a"
Expand Down
2 changes: 2 additions & 0 deletions x/evm/keeper/statedb_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -658,6 +658,7 @@ func (suite *KeeperTestSuite) TestAddLog() {
},
&ethtypes.Log{
Address: addr,
TxHash: txHash,
Topics: make([]common.Hash, 0),
},
func(vm.StateDB) {},
Expand All @@ -671,6 +672,7 @@ func (suite *KeeperTestSuite) TestAddLog() {
},
&ethtypes.Log{
Address: addr,
TxHash: txHash3,
Topics: make([]common.Hash, 0),
},
func(vm.StateDB) {},
Expand Down

0 comments on commit e7be8e3

Please sign in to comment.