aboutsummaryrefslogtreecommitdiffstats
path: root/eth
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2016-05-19 20:22:24 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2016-05-19 20:22:24 +0800
commite798e4fd750745cec99c5a531e42998d9a7be85e (patch)
treeb5ad1a7be107304866da4d5223cc67a564abdfff /eth
parente27af97a3c1ab83183be2a036fcdfcc4f6f45972 (diff)
parent4b1a7d3868e796ee70f62985379e59f933a2aca0 (diff)
downloadgo-tangerine-e798e4fd750745cec99c5a531e42998d9a7be85e.tar
go-tangerine-e798e4fd750745cec99c5a531e42998d9a7be85e.tar.gz
go-tangerine-e798e4fd750745cec99c5a531e42998d9a7be85e.tar.bz2
go-tangerine-e798e4fd750745cec99c5a531e42998d9a7be85e.tar.lz
go-tangerine-e798e4fd750745cec99c5a531e42998d9a7be85e.tar.xz
go-tangerine-e798e4fd750745cec99c5a531e42998d9a7be85e.tar.zst
go-tangerine-e798e4fd750745cec99c5a531e42998d9a7be85e.zip
Merge pull request #2582 from obscuren/fix-sign-tx
eth: fixed regression in eth_signTransaction fixes #2578
Diffstat (limited to 'eth')
-rw-r--r--eth/api.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/eth/api.go b/eth/api.go
index 1d66f53fe..c8ccbd51b 100644
--- a/eth/api.go
+++ b/eth/api.go
@@ -1353,7 +1353,7 @@ func (s *PublicTransactionPoolAPI) SignTransaction(args SignTransactionArgs) (*S
return nil, err
}
- return &SignTransactionResult{"0x" + common.Bytes2Hex(data), newTx(tx)}, nil
+ return &SignTransactionResult{"0x" + common.Bytes2Hex(data), newTx(signedTx)}, nil
}
// PendingTransactions returns the transactions that are in the transaction pool and have a from address that is one of