We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 645e3e8 commit 13d7de7Copy full SHA for 13d7de7
eth/downloader/queue.go
@@ -76,6 +76,8 @@ func newFetchResult(header *types.Header, fastSync bool) *fetchResult {
76
}
77
if !header.EmptyBody() {
78
item.pending |= (1 << bodyType)
79
+ } else if header.WithdrawalsHash != nil {
80
+ item.Withdrawals = make(types.Withdrawals, 0)
81
82
if fastSync && !header.EmptyReceipts() {
83
item.pending |= (1 << receiptType)
0 commit comments