aboutsummaryrefslogtreecommitdiffstats
path: root/core/blockchain.go
diff options
context:
space:
mode:
authorrjl493456442 <garyrong0905@gmail.com>2018-12-17 15:23:54 +0800
committerPéter Szilágyi <peterke@gmail.com>2019-04-08 17:02:15 +0800
commitf1b00cffc828105c17c0ecacb2074874b752a9a0 (patch)
treee10f951d918a763863e102ef4773a2ac29cd3d0c /core/blockchain.go
parent442320a8aee324a7c1059ae05de36a34556a9fa7 (diff)
downloaddexon-f1b00cffc828105c17c0ecacb2074874b752a9a0.tar
dexon-f1b00cffc828105c17c0ecacb2074874b752a9a0.tar.gz
dexon-f1b00cffc828105c17c0ecacb2074874b752a9a0.tar.bz2
dexon-f1b00cffc828105c17c0ecacb2074874b752a9a0.tar.lz
dexon-f1b00cffc828105c17c0ecacb2074874b752a9a0.tar.xz
dexon-f1b00cffc828105c17c0ecacb2074874b752a9a0.tar.zst
dexon-f1b00cffc828105c17c0ecacb2074874b752a9a0.zip
core: re-omit new log event when logs rebirth
Diffstat (limited to 'core/blockchain.go')
-rw-r--r--core/blockchain.go27
1 files changed, 19 insertions, 8 deletions
diff --git a/core/blockchain.go b/core/blockchain.go
index e40fc39fa..117be8c72 100644
--- a/core/blockchain.go
+++ b/core/blockchain.go
@@ -1401,11 +1401,11 @@ func (bc *BlockChain) reorg(oldBlock, newBlock *types.Block) error {
commonBlock *types.Block
deletedTxs types.Transactions
deletedLogs []*types.Log
+ rebirthLogs []*types.Log
// collectLogs collects the logs that were generated during the
// processing of the block that corresponds with the given hash.
- // These logs are later announced as deleted.
- collectLogs = func(hash common.Hash) {
- // Coalesce logs and set 'Removed'.
+ // These logs are later announced as deleted or reborn
+ collectLogs = func(hash common.Hash, removed bool) {
number := bc.hc.GetBlockNumber(hash)
if number == nil {
return
@@ -1413,9 +1413,13 @@ func (bc *BlockChain) reorg(oldBlock, newBlock *types.Block) error {
receipts := rawdb.ReadReceipts(bc.db, hash, *number)
for _, receipt := range receipts {
for _, log := range receipt.Logs {
- del := *log
- del.Removed = true
- deletedLogs = append(deletedLogs, &del)
+ l := *log
+ if removed {
+ l.Removed = true
+ deletedLogs = append(deletedLogs, &l)
+ } else {
+ rebirthLogs = append(rebirthLogs, &l)
+ }
}
}
}
@@ -1428,7 +1432,7 @@ func (bc *BlockChain) reorg(oldBlock, newBlock *types.Block) error {
oldChain = append(oldChain, oldBlock)
deletedTxs = append(deletedTxs, oldBlock.Transactions()...)
- collectLogs(oldBlock.Hash())
+ collectLogs(oldBlock.Hash(), true)
}
} else {
// reduce new chain and append new chain blocks for inserting later on
@@ -1452,7 +1456,7 @@ func (bc *BlockChain) reorg(oldBlock, newBlock *types.Block) error {
oldChain = append(oldChain, oldBlock)
newChain = append(newChain, newBlock)
deletedTxs = append(deletedTxs, oldBlock.Transactions()...)
- collectLogs(oldBlock.Hash())
+ collectLogs(oldBlock.Hash(), true)
oldBlock, newBlock = bc.GetBlock(oldBlock.ParentHash(), oldBlock.NumberU64()-1), bc.GetBlock(newBlock.ParentHash(), newBlock.NumberU64()-1)
if oldBlock == nil {
@@ -1478,6 +1482,10 @@ func (bc *BlockChain) reorg(oldBlock, newBlock *types.Block) error {
for i := len(newChain) - 1; i >= 0; i-- {
// insert the block in the canonical way, re-writing history
bc.insert(newChain[i])
+ // collect reborn logs due to chain reorg(except head block)
+ if i != 0 {
+ collectLogs(newChain[i].Hash(), false)
+ }
// write lookup entries for hash based transaction/receipt searches
rawdb.WriteTxLookupEntries(bc.db, newChain[i])
addedTxs = append(addedTxs, newChain[i].Transactions()...)
@@ -1495,6 +1503,9 @@ func (bc *BlockChain) reorg(oldBlock, newBlock *types.Block) error {
if len(deletedLogs) > 0 {
go bc.rmLogsFeed.Send(RemovedLogsEvent{deletedLogs})
}
+ if len(rebirthLogs) > 0 {
+ go bc.logsFeed.Send(rebirthLogs)
+ }
if len(oldChain) > 0 {
go func() {
for _, block := range oldChain {