aboutsummaryrefslogtreecommitdiffstats
path: root/miner
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-07-04 08:50:46 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-07-04 08:50:46 +0800
commit6f69b4d61f1278ea2d9351667512a1202403eaff (patch)
treecdaba096d74e5fb7e0a1023708b4458d5cb7da37 /miner
parentefd7da0ce8fc9ac10c2d50ed222c5360c53c17ca (diff)
parent2feb23c1dacf1cc7ef664d92f28b63dd46502f21 (diff)
downloadgo-tangerine-6f69b4d61f1278ea2d9351667512a1202403eaff.tar
go-tangerine-6f69b4d61f1278ea2d9351667512a1202403eaff.tar.gz
go-tangerine-6f69b4d61f1278ea2d9351667512a1202403eaff.tar.bz2
go-tangerine-6f69b4d61f1278ea2d9351667512a1202403eaff.tar.lz
go-tangerine-6f69b4d61f1278ea2d9351667512a1202403eaff.tar.xz
go-tangerine-6f69b4d61f1278ea2d9351667512a1202403eaff.tar.zst
go-tangerine-6f69b4d61f1278ea2d9351667512a1202403eaff.zip
Merge pull request #1399 from obscuren/receipts-storing-fix
core, eth, miner, xeth: receipt storage fix
Diffstat (limited to 'miner')
-rw-r--r--miner/worker.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/miner/worker.go b/miner/worker.go
index 1c1e8f927..dd004da6e 100644
--- a/miner/worker.go
+++ b/miner/worker.go
@@ -255,7 +255,7 @@ func (self *worker) wait() {
// This puts transactions in a extra db for rpc
core.PutTransactions(self.extraDb, block, block.Transactions())
// store the receipts
- core.PutReceipts(self.extraDb, block.Hash(), self.current.receipts)
+ core.PutReceipts(self.extraDb, self.current.receipts)
}
// check staleness and display confirmation