Compose additional fields
This commit is contained in:
@ -605,13 +605,18 @@ func (self *ethApi) GetTransactionReceipt(req *shared.Request) (interface{}, err
|
||||
}
|
||||
|
||||
txhash := common.BytesToHash(common.FromHex(args.Hash))
|
||||
tx, bhash, bnum, txi := self.xeth.EthTransactionByHash(args.Hash)
|
||||
rec := self.xeth.GetTxReceipt(txhash)
|
||||
// We could have an error of "not found". Should disambiguate
|
||||
// if err != nil {
|
||||
// return err, nil
|
||||
// }
|
||||
if rec != nil {
|
||||
if rec != nil && tx != nil {
|
||||
v := NewReceiptRes(rec)
|
||||
v.BlockHash = newHexData(bhash)
|
||||
v.BlockNumber = newHexNum(bnum)
|
||||
v.GasUsed = newHexNum(tx.Gas().Bytes())
|
||||
v.TransactionIndex = newHexNum(txi)
|
||||
return v, nil
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user