diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-07-06 20:00:17 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-07-06 20:00:17 +0800 |
commit | cc29b4bc27bf8f05ea863658e3627ee3c019e318 (patch) | |
tree | 7780b142547c121d9ada914b6bedce86777636cd /xeth | |
parent | 457a3c8f7691314b30909787b952fccebf7f38df (diff) | |
parent | 4f7fc7b23f50f3fba4e2fb6815738c4ec2c8fe0a (diff) | |
download | dexon-cc29b4bc27bf8f05ea863658e3627ee3c019e318.tar dexon-cc29b4bc27bf8f05ea863658e3627ee3c019e318.tar.gz dexon-cc29b4bc27bf8f05ea863658e3627ee3c019e318.tar.bz2 dexon-cc29b4bc27bf8f05ea863658e3627ee3c019e318.tar.lz dexon-cc29b4bc27bf8f05ea863658e3627ee3c019e318.tar.xz dexon-cc29b4bc27bf8f05ea863658e3627ee3c019e318.tar.zst dexon-cc29b4bc27bf8f05ea863658e3627ee3c019e318.zip |
Merge pull request #1413 from obscuren/receipt-fix
rpc, xeth: fixed returned tx hash & receipt logs
Diffstat (limited to 'xeth')
-rw-r--r-- | xeth/xeth.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xeth/xeth.go b/xeth/xeth.go index 4bd18a2f6..f2295e6e1 100644 --- a/xeth/xeth.go +++ b/xeth/xeth.go @@ -973,7 +973,7 @@ func (self *XEth) Transact(fromStr, toStr, nonceStr, valueStr, gasStr, gasPriceS glog.V(logger.Info).Infof("Tx(%x) to: %x\n", tx.Hash(), tx.To()) } - return tx.Hash().Hex(), nil + return signed.Hash().Hex(), nil } func (self *XEth) sign(tx *types.Transaction, from common.Address, didUnlock bool) (*types.Transaction, error) { |