Skip to content

Commit

Permalink
Fix Agra hf scheduling on Mumbai (#8620)
Browse files Browse the repository at this point in the history
Co-authored-by: yperbasis <andrey.ashikhmin@gmail.com>
  • Loading branch information
anshalshukla and yperbasis authored Oct 30, 2023
1 parent 513fd50 commit 83bbe0d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions erigon-lib/chain/chain_config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@ func TestBorKeyValueConfigHelper(t *testing.T) {

burntContract := map[string]common.Address{
"22640000": address1,
"41824608": address2,
"41874000": address2,
}
assert.Equal(t, borKeyValueConfigHelper(burntContract, 22640000), address1)
assert.Equal(t, borKeyValueConfigHelper(burntContract, 22640000+1), address1)
assert.Equal(t, borKeyValueConfigHelper(burntContract, 41824608-1), address1)
assert.Equal(t, borKeyValueConfigHelper(burntContract, 41824608), address2)
assert.Equal(t, borKeyValueConfigHelper(burntContract, 41824608+1), address2)
assert.Equal(t, borKeyValueConfigHelper(burntContract, 41874000-1), address1)
assert.Equal(t, borKeyValueConfigHelper(burntContract, 41874000), address2)
assert.Equal(t, borKeyValueConfigHelper(burntContract, 41874000+1), address2)
}
Loading

0 comments on commit 83bbe0d

Please sign in to comment.