Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

error updating wallet caused by esplora rate limit #70

Open
zoedberg opened this issue Sep 11, 2024 · 5 comments
Open

error updating wallet caused by esplora rate limit #70

zoedberg opened this issue Sep 11, 2024 · 5 comments
Labels
pre-audit Something should be completed before audit question Further information is requested
Milestone

Comments

@zoedberg
Copy link
Contributor

As shown in RGB-WG/rgb-tests#7 there's an issue when using the official mainnet esplora URL (https://blockstream.info/api) when calling Wallet::update.

This Blockstream/esplora#449 is a related issue, where it's explained that to dodge the 429 error we shoule leave a gap of around 250ms between each API call. Please also check bitcoindevkit/bdk#1120 (comment)

Not sure we want to fix this here or in https://github.com/BP-WG/bp-esplora-client

@dr-orlovsky
Copy link
Member

Hm, I am not sure how we can fix them. What specific fix you have in mind?

@dr-orlovsky dr-orlovsky added this to the v0.11.0 milestone Sep 11, 2024
@dr-orlovsky dr-orlovsky added the question Further information is requested label Sep 11, 2024
@zoedberg
Copy link
Contributor Author

Hm, I am not sure how we can fix them. What specific fix you have in mind?

IMO the best fix would be to handle this on bp-esplora-client, where every API call (blocking and async) should handle the 429 error by waiting some milliseconds and then retrying to do the call, something similar to what it has been done here https://github.com/Blockstream/lwk/blob/0533774f8d9b3fef2d579ad5b9bdd497ffa74165/lwk_wollet/src/clients/esplora_wasm_client.rs#L511.
But this would require refactoring the bp-esplora-client code, since currently every API call has its own error handling code.
In this regard, some days ago I've cherry-picked a commit from the original rust-esplora-client (bitcoindevkit/rust-esplora-client@df9c694), thinking it would have helped fixing the issues we were having with rustls. It didn't, so I didn't open a PR, but the commit refactored the blocking API calls making most calls share the same error handling code (check zoedberg/bp-esplora-client@a6d323c). If you think this is the right direction I could complete this work and introduce also the code needed to handle the 429 error.

An alternative and much faster fix would be to handle the error on bp-wallet during the Wallet::update call. More specifically in the get_scripthash_txs_all method, where we should check if the call to client.inner.scripthash_txs returns a HttpResponse(429) and in that case retry the call after some short time. This would fix only the Wallet::update call though, if in other places we'll be calling the esplora APIs too frequently then we would encounter this Too Many Requests issue again.

@zoedberg zoedberg added the pre-audit Something should be completed before audit label Sep 12, 2024
@dr-orlovsky
Copy link
Member

Refactoring of bp-esplora-client is anyway required, since it is a fork of BDK and is written in a complete shitcode. But I'd like to postpone this refactoring on later since it is not a high priority at all.

So I propose to use fastest route - and when we will be refactoring (rewriting) the whole code later we will address the issue at its root.

@dr-orlovsky
Copy link
Member

I am also opened to the idea of re-basing on top of the updated BDK esplora client code - I can work on that if you'd like

@zoedberg
Copy link
Contributor Author

Refactoring of bp-esplora-client is anyway required, since it is a fork of BDK and is written in a complete shitcode. But I'd like to postpone this refactoring on later since it is not a high priority at all.

So I propose to use fastest route - and when we will be refactoring (rewriting) the whole code later we will address the issue at its root.

I agree refactoring is not a priority, but having RGB working on mainnet will soon be and this 429 error is preventing it. We can try the fastest route but I'm not sure that we'll not encounter other issues later on.

I am also opened to the idea of re-basing on top of the updated BDK esplora client code - I can work on that if you'd like

I'm not sure this would help, they are not handling the 429 error and the main changes between the upstream repo and this one are contained in the commit I've cherry-picked.
Anyway we can consider this issue not as urgent as others, so I propose to do nothing for now and then the first of us who finishes their more urgent tasks will start the refactor.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
pre-audit Something should be completed before audit question Further information is requested
Projects
None yet
Development

No branches or pull requests

2 participants