diff --git a/eth/downloader/queue.go b/eth/downloader/queue.go index 784ac23c8e..bbd4eef204 100644 --- a/eth/downloader/queue.go +++ b/eth/downloader/queue.go @@ -81,7 +81,7 @@ func newFetchResult(header *types.Header, fastSync bool) *fetchResult { // item.pending |= (1 << bodyType) //} if fastSync && !header.EmptyReceipts() { - //item.pending |= (1 << receiptType) // The receipt is not synchronized in PlatON SnapSync mode, so comment here + item.pending |= (1 << receiptType) // The receipt is not synchronized in PlatON SnapSync mode, so comment here } return item }