Remove redundant function

This commit is contained in:
Taylor Gerring
2015-07-04 11:28:30 -05:00
parent 3be9046c21
commit cd4cc309ae
3 changed files with 3 additions and 18 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.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 {