diff options
author | Ilya Kitaev <mbg033@gmail.com> | 2016-09-26 22:50:10 +0300 |
---|---|---|
committer | Ilya Kitaev <mbg033@gmail.com> | 2016-09-26 23:19:25 +0300 |
commit | 3079c5756be459af57c8c866b339b4b98c1da1f2 (patch) | |
tree | 12613206489610e43bf9504506bc6931aacd5638 /src/wallet/wallet2_api.h | |
parent | wallet2_api: added Wallet::daemonBlockChainHeight() (diff) | |
download | monero-3079c5756be459af57c8c866b339b4b98c1da1f2.tar.xz |
wallet2_api: milliseconds resolution for auto-refresh interval
Diffstat (limited to 'src/wallet/wallet2_api.h')
-rw-r--r-- | src/wallet/wallet2_api.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wallet/wallet2_api.h b/src/wallet/wallet2_api.h index f424f7258..08e2ae16b 100644 --- a/src/wallet/wallet2_api.h +++ b/src/wallet/wallet2_api.h @@ -269,12 +269,12 @@ struct Wallet /** * @brief setAutoRefreshInterval - setup interval for automatic refresh. - * @param seconds - interval in seconds. if zero or less than zero - automatic refresh disabled; + * @param seconds - interval in millis. if zero or less than zero - automatic refresh disabled; */ - virtual void setAutoRefreshInterval(int seconds) = 0; + virtual void setAutoRefreshInterval(int millis) = 0; /** - * @brief autoRefreshInterval - returns automatic refresh interval in seconds + * @brief autoRefreshInterval - returns automatic refresh interval in millis * @return */ virtual int autoRefreshInterval() const = 0; |