mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-08-24 22:19:37 -04:00
fix(wallet): Increase request_timeout to 7s, min_retries to 10 for Electrum load balancer (#402)
This commit is contained in:
parent
0f57136362
commit
5f58669915
3 changed files with 5 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -120,7 +120,7 @@ export default function UpdaterDialog() {
|
|||
<Dialog
|
||||
fullWidth
|
||||
maxWidth="sm"
|
||||
open={availableUpdate.available}
|
||||
open={availableUpdate?.available}
|
||||
onClose={hideNotification}
|
||||
>
|
||||
<DialogTitle>Update Available</DialogTitle>
|
||||
|
|
|
@ -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,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue