feat(gui): Display timelock status using a timeline (#153)

This commit is contained in:
binarybaron 2024-11-14 13:33:20 +01:00 committed by GitHub
parent 3e79bb3712
commit 4cf5cf719a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
22 changed files with 499 additions and 343 deletions

View file

@ -1327,7 +1327,8 @@ impl CheckMoneroNodeArgs {
static CLIENT: Lazy<reqwest::Client> = Lazy::new(|| {
reqwest::Client::builder()
.timeout(Duration::from_secs(30))
// This function is called very frequently, so we set the timeout to be short
.timeout(Duration::from_secs(5))
.https_only(false)
.build()
.expect("reqwest client to work")