device/trezor: increase live-refresh timeout

This commit is contained in:
Dusan Klinec 2019-03-29 17:22:44 +01:00
parent 423d3bb86b
commit c2f271d13a
No known key found for this signature in database
GPG Key ID: 6337E118CCBCE103
1 changed files with 1 additions and 1 deletions

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;
}