aboutsummaryrefslogtreecommitdiffstats
path: root/xeth
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2015-07-04 13:00:23 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2015-07-04 13:00:23 +0800
commit481b221279be1673832f96e35e3fdc0f82e178bc (patch)
tree4efeb12d4685b56a9d137c3b72d6d6184dbf8b53 /xeth
parent80eb8f46b7991b80dffe00e52d9fb00a90531bc0 (diff)
downloadgo-tangerine-481b221279be1673832f96e35e3fdc0f82e178bc.tar
go-tangerine-481b221279be1673832f96e35e3fdc0f82e178bc.tar.gz
go-tangerine-481b221279be1673832f96e35e3fdc0f82e178bc.tar.bz2
go-tangerine-481b221279be1673832f96e35e3fdc0f82e178bc.tar.lz
go-tangerine-481b221279be1673832f96e35e3fdc0f82e178bc.tar.xz
go-tangerine-481b221279be1673832f96e35e3fdc0f82e178bc.tar.zst
go-tangerine-481b221279be1673832f96e35e3fdc0f82e178bc.zip
Decode full receipt storage
Diffstat (limited to 'xeth')
-rw-r--r--xeth/xeth.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/xeth/xeth.go b/xeth/xeth.go
index cbc8dbbde..1b7f06821 100644
--- a/xeth/xeth.go
+++ b/xeth/xeth.go
@@ -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 {