mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-11-27 03:06:24 -05: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]
|
## [Unreleased]
|
||||||
|
|
||||||
|
- ASB + GUI + CLI: Increase request_timeout to 7s, min_retries to 10 for Electrum load balancer
|
||||||
|
|
||||||
## [2.0.0] - 2025-06-12
|
## [2.0.0] - 2025-06-12
|
||||||
|
|
||||||
- GUI: Build Flatpak bundle in release workflow
|
- GUI: Build Flatpak bundle in release workflow
|
||||||
|
|
|
||||||
|
|
@ -120,7 +120,7 @@ export default function UpdaterDialog() {
|
||||||
<Dialog
|
<Dialog
|
||||||
fullWidth
|
fullWidth
|
||||||
maxWidth="sm"
|
maxWidth="sm"
|
||||||
open={availableUpdate.available}
|
open={availableUpdate?.available}
|
||||||
onClose={hideNotification}
|
onClose={hideNotification}
|
||||||
>
|
>
|
||||||
<DialogTitle>Update Available</DialogTitle>
|
<DialogTitle>Update Available</DialogTitle>
|
||||||
|
|
|
||||||
|
|
@ -553,8 +553,8 @@ pub struct ElectrumBalancerConfig {
|
||||||
impl Default for ElectrumBalancerConfig {
|
impl Default for ElectrumBalancerConfig {
|
||||||
fn default() -> Self {
|
fn default() -> Self {
|
||||||
Self {
|
Self {
|
||||||
request_timeout: 5,
|
request_timeout: 7,
|
||||||
min_retries: 5,
|
min_retries: 10,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue