good morning!!!!

Skip to content
Snippets Groups Projects
Commit 77703045 authored by Steven Roose's avatar Steven Roose Committed by Felix Lange
Browse files

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

Fixes #3203
parent 890ffa05
No related branches found
No related tags found
No related merge requests found
......@@ -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")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment