diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-05-20 18:00:36 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-05-20 18:00:36 +0800 |
commit | 8fe8ec84f6a0cbc51d6018af7269952062279234 (patch) | |
tree | 764f9206eeb976c08e4d655c96a958e2569e3e0b /core | |
parent | 0300eef94d7d1e58bc5cf94094a3d492c70486e1 (diff) | |
parent | 00ec4132f89527a6e2ae6b1d3842c447cab38cef (diff) | |
download | go-tangerine-8fe8ec84f6a0cbc51d6018af7269952062279234.tar.gz go-tangerine-8fe8ec84f6a0cbc51d6018af7269952062279234.tar.zst go-tangerine-8fe8ec84f6a0cbc51d6018af7269952062279234.zip |
Merge pull request #1049 from zsfelfoldi/receipts
Storing tx receipts in extraDb
Diffstat (limited to 'core')
-rw-r--r-- | core/block_processor.go | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/core/block_processor.go b/core/block_processor.go index 20e6722a4..3a224059b 100644 --- a/core/block_processor.go +++ b/core/block_processor.go @@ -23,6 +23,8 @@ const ( BlockChainVersion = 2 ) +var receiptsPre = []byte("receipts-") + type BlockProcessor struct { db common.Database extraDb common.Database @@ -262,9 +264,23 @@ func (sm *BlockProcessor) processWithParent(block, parent *types.Block) (logs st putTx(sm.extraDb, tx, block, uint64(i)) } + receiptsRlp := block.Receipts().RlpEncode() + sm.extraDb.Put(append(receiptsPre, block.Hash().Bytes()...), receiptsRlp) + return state.Logs(), nil } +func (self *BlockProcessor) GetBlockReceipts(bhash common.Hash) (receipts types.Receipts, err error) { + var rdata []byte + rdata, err = self.extraDb.Get(append(receiptsPre, bhash[:]...)) + + if err == nil { + err = rlp.DecodeBytes(rdata, &receipts) + } + return + +} + // Validates the current block. Returns an error if the block was invalid, // an uncle or anything that isn't on the current block chain. // Validation validates easy over difficult (dagger takes longer time = difficult) |