-
Notifications
You must be signed in to change notification settings - Fork 26
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
[BUG] Crashing on requests happening too fast #109
Comments
New info, this happens with any requests that are happening "too fast" println!("{:?}", daemon.get_block_count().await);
println!("{:?}", daemon.get_block_count().await);
println!("{:?}", daemon.get_block_count().await);
println!("{:?}", daemon.get_block_count().await);
println!("{:?}", daemon.get_block_count().await); Has the same behavior |
Adding |
Also, if you dont have this problem try running your blockchain locally and using --release |
I also faced this issue, any plans to fix? |
I suspect the problem is on the node/wallet side and not from the crate. Did you try to query at the same pace the node with another lib or with |
With the sample code
The following program crashes, with the error
However, adding a sleep between the open_wallet and get_balance requests makes it work as intended.
The text was updated successfully, but these errors were encountered: