1
0
Fork 0
mirror of https://git.wownero.com/wownero/wownero.git synced 2024-08-15 01:03:23 +00:00

Merge pull request

c2f271d1 device/trezor: increase live-refresh timeout (Dusan Klinec)
This commit is contained in:
Riccardo Spagni 2019-04-11 12:41:34 +02:00
commit 793651e731
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD

View file

@ -137,7 +137,7 @@ namespace trezor {
}
auto current_time = std::chrono::steady_clock::now();
if (current_time - m_last_live_refresh_time <= std::chrono::seconds(20))
if (current_time - m_last_live_refresh_time <= std::chrono::minutes(5))
{
continue;
}