diff --git a/core/state_processor.go b/core/state_processor.go index 840497b22d..5bc295611b 100644 --- a/core/state_processor.go +++ b/core/state_processor.go @@ -121,6 +121,7 @@ func (p *StateProcessor) ProcessBlockNoValidator(cBlock *CalculatedBlock, stated return nil, nil, 0, ErrStopPreparingBlock } receipts[i] = receipt + allLogs = append(allLogs, receipt.Logs...) } // Finalize the block, applying any consensus engine specific extras (e.g. block rewards) p.engine.Finalize(p.bc, header, statedb, block.Transactions(), block.Uncles(), receipts)