diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2015-07-04 13:00:23 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2015-07-04 13:00:23 +0800 |
commit | 481b221279be1673832f96e35e3fdc0f82e178bc (patch) | |
tree | 4efeb12d4685b56a9d137c3b72d6d6184dbf8b53 /xeth/xeth.go | |
parent | 80eb8f46b7991b80dffe00e52d9fb00a90531bc0 (diff) | |
download | dexon-481b221279be1673832f96e35e3fdc0f82e178bc.tar dexon-481b221279be1673832f96e35e3fdc0f82e178bc.tar.gz dexon-481b221279be1673832f96e35e3fdc0f82e178bc.tar.bz2 dexon-481b221279be1673832f96e35e3fdc0f82e178bc.tar.lz dexon-481b221279be1673832f96e35e3fdc0f82e178bc.tar.xz dexon-481b221279be1673832f96e35e3fdc0f82e178bc.tar.zst dexon-481b221279be1673832f96e35e3fdc0f82e178bc.zip |
Decode full receipt storage
Diffstat (limited to 'xeth/xeth.go')
-rw-r--r-- | xeth/xeth.go | 4 |
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 { |