ethclient: changed TransactionByHash to only pass one argument to api method (#3209)

Fixes #3203
This commit is contained in:
Steven Roose 2016-10-27 23:10:24 +02:00 committed by Felix Lange
parent 890ffa05f8
commit 7770304576
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ func (ec *Client) HeaderByNumber(ctx context.Context, number *big.Int) (*types.H
// TransactionByHash returns the transaction with the given hash.
func (ec *Client) TransactionByHash(ctx context.Context, hash common.Hash) (*types.Transaction, error) {
var tx *types.Transaction
err := ec.c.CallContext(ctx, &tx, "eth_getTransactionByHash", hash, false)
err := ec.c.CallContext(ctx, &tx, "eth_getTransactionByHash", hash)
if err == nil {
if _, r, _ := tx.SignatureValues(); r == nil {
return nil, fmt.Errorf("server returned transaction without signature")