This repository has been archived by the owner on Jun 10, 2019. It is now read-only.
getTransactions
returns transactions outside the given block range
#42
Labels
bug
Something isn't working
Describe the bug
The operator exposes an RPC call,
getTransactions
, that returns a list of transactions received by a given address during a given block range. The parameters to the call are:address
-string
: Recipient address.startBlock
-number
: Block to start querying from.endBlock
-number
: Block to end querying at.However, it seems that
startBlock
andendBlock
are being ignored. For example, when I query transactions from blocks0
to10
, I'm getting things back from block18
and21
.Steps to reproduce
Steps to reproduce the behavior:
N
endBlock < N
B > endBlock
.Expected behavior
getTransactions
should only return transactions received by an address during the specified bounds.The text was updated successfully, but these errors were encountered: