aboutsummaryrefslogtreecommitdiffstats
path: root/core/chain_makers.go
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2015-09-30 00:36:16 +0800
committerPéter Szilágyi <peterke@gmail.com>2015-10-19 15:03:09 +0800
commit42c8afd44006b170c20159abaadc31cc7545bec2 (patch)
tree49f150caef8b09d1584dc9635382b3938fee45e1 /core/chain_makers.go
parentb99fe27f8b4d37fe3838d52b682e99c85098ee59 (diff)
downloadgo-tangerine-42c8afd44006b170c20159abaadc31cc7545bec2.tar
go-tangerine-42c8afd44006b170c20159abaadc31cc7545bec2.tar.gz
go-tangerine-42c8afd44006b170c20159abaadc31cc7545bec2.tar.bz2
go-tangerine-42c8afd44006b170c20159abaadc31cc7545bec2.tar.lz
go-tangerine-42c8afd44006b170c20159abaadc31cc7545bec2.tar.xz
go-tangerine-42c8afd44006b170c20159abaadc31cc7545bec2.tar.zst
go-tangerine-42c8afd44006b170c20159abaadc31cc7545bec2.zip
core: differentiate receipt concensus and storage decoding
Diffstat (limited to 'core/chain_makers.go')
-rw-r--r--core/chain_makers.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/chain_makers.go b/core/chain_makers.go
index eb451c00d..be6ba04e4 100644
--- a/core/chain_makers.go
+++ b/core/chain_makers.go
@@ -99,7 +99,7 @@ func (b *BlockGen) AddTx(tx *types.Transaction) {
b.header.GasUsed.Add(b.header.GasUsed, gas)
receipt := types.NewReceipt(root.Bytes(), b.header.GasUsed)
logs := b.statedb.GetLogs(tx.Hash())
- receipt.SetLogs(logs)
+ receipt.Logs = logs
receipt.Bloom = types.CreateBloom(types.Receipts{receipt})
b.txs = append(b.txs, tx)
b.receipts = append(b.receipts, receipt)