Skip to content

Commit

Permalink
Merge pull request #2582 from obscuren/fix-sign-tx
Browse files Browse the repository at this point in the history
eth: fixed regression in eth_signTransaction fixes #2578
  • Loading branch information
obscuren committed May 19, 2016
2 parents e27af97 + 4b1a7d3 commit e798e4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eth/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e798e4f

Please sign in to comment.