Skip to content

Commit

Permalink
Fix Agra hf scheduling on Mumbai (#8621)
Browse files Browse the repository at this point in the history
Cherry pick PR #8620

---------

Co-authored-by: Anshal Shukla <53994948+anshalshukla@users.noreply.github.com>
  • Loading branch information
yperbasis and anshalshukla committed Oct 30, 2023
1 parent 4fc8c37 commit e59704f
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 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 e59704f

Please sign in to comment.