diff options
author | Péter Szilágyi <peterke@gmail.com> | 2015-09-30 00:36:16 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2015-10-19 15:03:09 +0800 |
commit | 42c8afd44006b170c20159abaadc31cc7545bec2 (patch) | |
tree | 49f150caef8b09d1584dc9635382b3938fee45e1 /core/chain_makers.go | |
parent | b99fe27f8b4d37fe3838d52b682e99c85098ee59 (diff) | |
download | go-tangerine-42c8afd44006b170c20159abaadc31cc7545bec2.tar.gz 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.go | 2 |
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) |