diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-11-19 17:57:00 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-11-19 17:57:00 +0800 |
commit | ae37a8013d5a348bdb21d4a66d5f462e0baf7cd8 (patch) | |
tree | 5ce6b23c32fc1f47cc688ac954b3d26d4eec9cad /xeth | |
parent | 23f42d9463e55fe86100b86c2ab0b7c95f181f91 (diff) | |
parent | a1d9ef48c505ab4314ca8e3ee1fc272032da3034 (diff) | |
download | go-tangerine-ae37a8013d5a348bdb21d4a66d5f462e0baf7cd8.tar go-tangerine-ae37a8013d5a348bdb21d4a66d5f462e0baf7cd8.tar.gz go-tangerine-ae37a8013d5a348bdb21d4a66d5f462e0baf7cd8.tar.bz2 go-tangerine-ae37a8013d5a348bdb21d4a66d5f462e0baf7cd8.tar.lz go-tangerine-ae37a8013d5a348bdb21d4a66d5f462e0baf7cd8.tar.xz go-tangerine-ae37a8013d5a348bdb21d4a66d5f462e0baf7cd8.tar.zst go-tangerine-ae37a8013d5a348bdb21d4a66d5f462e0baf7cd8.zip |
Merge pull request #1917 from obscuren/validator-interface
core, eth, rpc: split out block validator and state processor
Diffstat (limited to 'xeth')
-rw-r--r-- | xeth/xeth.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xeth/xeth.go b/xeth/xeth.go index 35e6dd52d..243bef0b8 100644 --- a/xeth/xeth.go +++ b/xeth/xeth.go @@ -379,7 +379,7 @@ func (self *XEth) CurrentBlock() *types.Block { } func (self *XEth) GetBlockReceipts(bhash common.Hash) types.Receipts { - return self.backend.BlockProcessor().GetBlockReceipts(bhash) + return core.GetBlockReceipts(self.backend.ChainDb(), bhash) } func (self *XEth) GetTxReceipt(txhash common.Hash) *types.Receipt { |