Skip to content

Commit 41f01ec

Browse files
Charles Jhongmark
Charles Jhong
authored and
mark
committed
core/: remove duplicated WriteTxLookupEntries call
1 parent 48d6085 commit 41f01ec

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

core/blockchain.go

+4-2
Original file line numberDiff line numberDiff line change
@@ -1237,7 +1237,10 @@ func (bc *BlockChain) InsertReceiptChain(blockChain types.Blocks, receiptChain [
12371237
}
12381238
h := rawdb.ReadCanonicalHash(bc.db, frozen)
12391239
b := rawdb.ReadBlock(bc.db, h, frozen)
1240-
l := rawdb.ReadTransferLogs(bc.db, h, frozen)
1240+
l, err := rawdb.ReadTransferLogs(bc.db, h, frozen)
1241+
if err != nil {
1242+
return 0, err
1243+
}
12411244
size += rawdb.WriteAncientBlock(bc.db, b, rawdb.ReadReceipts(bc.db, h, frozen, bc.chainConfig), rawdb.ReadTd(bc.db, h, frozen), l)
12421245
count += 1
12431246

@@ -1282,7 +1285,6 @@ func (bc *BlockChain) InsertReceiptChain(blockChain types.Blocks, receiptChain [
12821285
}
12831286
// Flush data into ancient database.
12841287
size += rawdb.WriteAncientBlock(bc.db, block, receiptChain[i], bc.GetTd(block.Hash(), block.NumberU64()), nil)
1285-
rawdb.WriteTxLookupEntriesByBlock(batch, block)
12861288

12871289
// Write tx indices if any condition is satisfied:
12881290
// * If user requires to reserve all tx indices(txlookuplimit=0)

0 commit comments

Comments
 (0)