From 4b1a7d3868e796ee70f62985379e59f933a2aca0 Mon Sep 17 00:00:00 2001 From: Jeffrey Wilcke Date: Wed, 18 May 2016 17:23:58 +0200 Subject: [PATCH] eth: fixed regression in eth_signTransaction fixes #2578 Sign transaction returned the unsigned transaction rather than the signed one. --- eth/api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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