fix tests

This commit is contained in:
Anshal Shukla 2023-10-20 23:09:00 +05:30
parent aff2f1fa73
commit a504fa6e2f

View file

@ -367,11 +367,7 @@ func TestGetBlockBodies68(t *testing.T) {
func testGetBlockBodies(t *testing.T, protocol uint) { func testGetBlockBodies(t *testing.T, protocol uint) {
gen := func(n int, g *core.BlockGen) { gen := func(n int, g *core.BlockGen) {
if n%2 == 0 { if n%2 == 0 {
w := &types.Withdrawal{ g.AddWithdrawal(&types.Withdrawal{})
Address: common.Address{0xaa},
Amount: 42,
}
g.AddWithdrawal(w)
} }
} }