mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 18:32:23 +00:00
Fix lint error
This commit is contained in:
parent
202a1003ee
commit
c780558e08
1 changed files with 1 additions and 1 deletions
|
|
@ -913,7 +913,7 @@ func (r *Resolver) EstimateGas(ctx context.Context, args struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
gas, err := ethapi.DoEstimateGas(ctx, r.backend, args.Data, blockNumber)
|
gas, err := ethapi.DoEstimateGas(ctx, r.backend, args.Data, blockNumber)
|
||||||
return hexutil.Uint64(gas), err
|
return gas, err
|
||||||
}
|
}
|
||||||
|
|
||||||
// FilterCritera encapsulates the arguments to `logs` on the root resolver object.
|
// FilterCritera encapsulates the arguments to `logs` on the root resolver object.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue