diff --git a/core/types/block.go b/core/types/block.go index f17f9f88562a..ac8c031acf18 100644 --- a/core/types/block.go +++ b/core/types/block.go @@ -350,15 +350,6 @@ func (b *Block) BaseFee() *big.Int { return new(big.Int).Set(b.header.BaseFee) } -func (b *Block) WithdrawalsHash() *common.Hash { - if b.header.WithdrawalsHash == nil { - return nil - } - var h common.Hash - h.SetBytes(b.header.WithdrawalsHash.Bytes()) - return &h -} - func (b *Block) Withdrawals() Withdrawals { return b.withdrawals }