diff options
-rw-r--r-- | ethclient/ethclient.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ethclient/ethclient.go b/ethclient/ethclient.go index ffa8228cc..aa7796f32 100644 --- a/ethclient/ethclient.go +++ b/ethclient/ethclient.go @@ -269,7 +269,7 @@ func (ec *Client) NonceAt(ctx context.Context, account common.Address, blockNumb // FilterLogs executes a filter query. func (ec *Client) FilterLogs(ctx context.Context, q ethereum.FilterQuery) ([]vm.Log, error) { var result []vm.Log - err := ec.c.CallContext(ctx, &result, "eth_getFilterLogs", toFilterArg(q)) + err := ec.c.CallContext(ctx, &result, "eth_getLogs", toFilterArg(q)) return result, err } @@ -281,7 +281,7 @@ func (ec *Client) SubscribeFilterLogs(ctx context.Context, q ethereum.FilterQuer func toFilterArg(q ethereum.FilterQuery) interface{} { arg := map[string]interface{}{ "fromBlock": toBlockNumArg(q.FromBlock), - "endBlock": toBlockNumArg(q.ToBlock), + "toBlock": toBlockNumArg(q.ToBlock), "addresses": q.Addresses, "topics": q.Topics, } |