From 8eaf0ca38214d2dc636df453865b36b5cc3cfd61 Mon Sep 17 00:00:00 2001 From: benbaley Date: Mon, 26 Feb 2024 12:04:48 +0800 Subject: [PATCH] =?UTF-8?q?=E9=80=82=E9=85=8D=E5=A4=96=E9=83=A8=E5=BA=94?= =?UTF-8?q?=E7=94=A8=E5=AF=B9fullnode=E8=8A=82=E7=82=B9=E7=9A=84=E9=9C=80?= =?UTF-8?q?=E6=B1=82=EF=BC=8Cfast=E5=90=8C=E6=AD=A5=E5=90=8E=E5=B0=86?= =?UTF-8?q?=E5=9B=9E=E6=89=A7=E6=8F=92=E5=85=A5db=EF=BC=8C=E4=BF=9D?= =?UTF-8?q?=E6=8C=81=E5=92=8C=E4=BB=A5=E5=A4=AA=E5=9D=8A=E4=B8=80=E8=87=B4?= =?UTF-8?q?=EF=BC=8C=E5=8F=82=E8=A7=81=EF=BC=9Ahttps://www.quicknode.com/g?= =?UTF-8?q?uides/infrastructure/node-setup/ethereum-full-node-vs-archive-n?= =?UTF-8?q?ode?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- eth/downloader/queue.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }