diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2016-05-19 20:22:24 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2016-05-19 20:22:24 +0800 |
commit | e798e4fd750745cec99c5a531e42998d9a7be85e (patch) | |
tree | b5ad1a7be107304866da4d5223cc67a564abdfff | |
parent | e27af97a3c1ab83183be2a036fcdfcc4f6f45972 (diff) | |
parent | 4b1a7d3868e796ee70f62985379e59f933a2aca0 (diff) | |
download | go-tangerine-e798e4fd750745cec99c5a531e42998d9a7be85e.tar.gz 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
-rw-r--r-- | eth/api.go | 2 |
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 |