Hide background_fetch_without_timeout from public API

This commit is contained in:
link2xt
2024-01-29 23:29:57 +00:00
committed by bjoern
parent 5bb80f94c7
commit ea666f1098
3 changed files with 7 additions and 14 deletions

View File

@@ -240,7 +240,7 @@ impl CommandApi {
self.accounts
.write()
.await
.background_fetch_with_timeout(std::time::Duration::from_secs_f64(timeout_in_seconds))
.background_fetch(std::time::Duration::from_secs_f64(timeout_in_seconds))
.await?;
Ok(())
}