diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2015-07-05 00:28:30 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2015-07-05 00:28:30 +0800 |
commit | cd4cc309ae4ead756cbe58ad564b029e874d9832 (patch) | |
tree | 4ee1da5ab9196aabf516369cb45c96c1fad444ad /xeth/xeth.go | |
parent | 3be9046c21920abffa3c5ec81d5aabea8e3bab73 (diff) | |
download | go-tangerine-cd4cc309ae4ead756cbe58ad564b029e874d9832.tar.gz go-tangerine-cd4cc309ae4ead756cbe58ad564b029e874d9832.tar.zst go-tangerine-cd4cc309ae4ead756cbe58ad564b029e874d9832.zip |
Remove redundant function
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 1b7f06821..cbc8dbbde 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.ReceiptForStorage { - return core.GetFullReceipt(self.backend.ExtraDb(), txhash) +func (self *XEth) GetTxReceipt(txhash common.Hash) *types.Receipt { + return core.GetReceipt(self.backend.ExtraDb(), txhash) } func (self *XEth) GasLimit() *big.Int { |