Skip to content

Commit 0101895

Browse files
authored
core: fix a merge fault (#26802)
1 parent 19f74fa commit 0101895

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/chain_makers_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ func TestGenerateWithdrawalChain(t *testing.T) {
118118
// enforce that withdrawal indexes are monotonically increasing from 0
119119
var (
120120
withdrawalIndex uint64
121-
head = blockchain.CurrentBlock().NumberU64()
121+
head = blockchain.CurrentBlock().Number.Uint64()
122122
)
123123
for i := 0; i < int(head); i++ {
124124
block := blockchain.GetBlockByNumber(uint64(i))

0 commit comments

Comments
 (0)