Fix hex conversion

This commit is contained in:
Taylor Gerring 2015-07-03 23:46:59 -05:00
parent 3a983d2419
commit 80eb8f46b7
1 changed files with 2 additions and 1 deletions

View File

@ -604,7 +604,8 @@ func (self *ethApi) GetTransactionReceipt(req *shared.Request) (interface{}, err
return nil, shared.NewDecodeParamError(err.Error())
}
rec, _ := self.xeth.GetTxReceipt(common.StringToHash(args.Hash))
v := common.BytesToHash(common.FromHex(args.Hash))
rec := self.xeth.GetTxReceipt(v)
// We could have an error of "not found". Should disambiguate
// if err != nil {
// return err, nil