From 0f6e3e873ab378e8ef997adcf5b0a0d78b6c90cc Mon Sep 17 00:00:00 2001 From: Jeffrey Wilcke Date: Wed, 18 May 2016 17:23:58 +0200 Subject: [PATCH] [release 1.4.5] eth: fixed regression in eth_signTransaction fixes #2578 Sign transaction returned the unsigned transaction rather than the signed one. (cherry picked from commit 4b1a7d3868e796ee70f62985379e59f933a2aca0) --- eth/api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/api.go b/eth/api.go index 1f9fe5d558..06f4d5de02 100644 --- a/eth/api.go +++ b/eth/api.go @@ -1408,7 +1408,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