Skip to content

Commit

Permalink
core: fix a merge fault (ethereum#26802)
Browse files Browse the repository at this point in the history
  • Loading branch information
karalabe authored and mmsqe committed Dec 7, 2023
1 parent f29bfed commit f685d54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/chain_makers_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ func TestGenerateWithdrawalChain(t *testing.T) {
// enforce that withdrawal indexes are monotonically increasing from 0
var (
withdrawalIndex uint64
head = blockchain.CurrentBlock().NumberU64()
head = blockchain.CurrentBlock().Number.Uint64()
)
for i := 0; i < int(head); i++ {
block := blockchain.GetBlockByNumber(uint64(i))
Expand Down

0 comments on commit f685d54

Please sign in to comment.