Decode full receipt storage

This commit is contained in:
Taylor Gerring
2015-07-04 00:00:23 -05:00
parent 80eb8f46b7
commit 481b221279
3 changed files with 21 additions and 4 deletions

View File

@ -368,8 +368,8 @@ func (self *XEth) GetBlockReceipts(bhash common.Hash) types.Receipts {
return self.backend.BlockProcessor().GetBlockReceipts(bhash)
}
func (self *XEth) GetTxReceipt(txhash common.Hash) *types.Receipt {
return core.GetReceipt(self.backend.ExtraDb(), txhash)
func (self *XEth) GetTxReceipt(txhash common.Hash) *types.ReceiptForStorage {
return core.GetFullReceipt(self.backend.ExtraDb(), txhash)
}
func (self *XEth) GasLimit() *big.Int {