You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Querying the mempool unfortunately takes multiple sequential steps:
first we call `getrawmempool` to retrieve a list of all entries and then
retrieve all of them via `getmempoolentry`.
Previously, we would error out if a previously retrieved `Txid` wouldn't
be available anymore at the second step. Here, we ensure smooth
continuation by simply skipping any entries we can't retrieve anymore.
0 commit comments