ethclient: bugfix retrieving logs
This commit is contained in:
parent
c8d6efd602
commit
5bb517355e
@ -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,
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user