fix(wallet): Increase request_timeout to 7s, min_retries to 10 for Electrum load balancer (#402)

This commit is contained in:
Mohan 2025-06-12 17:37:32 +02:00 committed by GitHub
parent 0f57136362
commit 5f58669915
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 5 additions and 3 deletions

View file

@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
- ASB + GUI + CLI: Increase request_timeout to 7s, min_retries to 10 for Electrum load balancer
## [2.0.0] - 2025-06-12
- GUI: Build Flatpak bundle in release workflow

View file

@ -120,7 +120,7 @@ export default function UpdaterDialog() {
<Dialog
fullWidth
maxWidth="sm"
open={availableUpdate.available}
open={availableUpdate?.available}
onClose={hideNotification}
>
<DialogTitle>Update Available</DialogTitle>

View file

@ -553,8 +553,8 @@ pub struct ElectrumBalancerConfig {
impl Default for ElectrumBalancerConfig {
fn default() -> Self {
Self {
request_timeout: 5,
min_retries: 5,
request_timeout: 7,
min_retries: 10,
}
}
}