eth/fetcher/block_fetcher_pow.go — Version Comparison
|
v1.16.8 |
v1.17.3 |
| Branch |
etc/v1.16.8-full-node |
etc/v1.17.3-full-node |
| Delta |
+939 -0 |
+939 -0 |
Diff between branches
diff --git a/eth/fetcher/block_fetcher_pow.go b/eth/fetcher/block_fetcher_pow.go
index 00e4e29d6..8ff81b8e1 100644
--- a/eth/fetcher/block_fetcher_pow.go
+++ b/eth/fetcher/block_fetcher_pow.go
@@ -541,7 +541,7 @@ func (f *BlockFetcher) loop() {
case res := <-resCh:
res.Done <- nil
// Ignoring withdrawals here, since the block fetcher is not used post-merge.
- txs, uncles, _ := res.Res.(*eth.BlockBodiesResponse).Unpack()
+ txs, uncles := res.Res.(*eth.BlockBodiesResponse).Unpack()
f.FilterBodies(peer, txs, uncles, time.Now())
case <-timeout.C:
← Back to Version Comparison