diff options
author | rbrunner7 <rbrunner@dreamshare.ch> | 2018-08-05 09:58:33 +0200 |
---|---|---|
committer | rbrunner7 <rbrunner@dreamshare.ch> | 2018-08-05 09:58:33 +0200 |
commit | 2fd9be1646e331b68e4ce4ffc221bd81e85f4eaa (patch) | |
tree | 4c88885bf61493926b227fdd8f232ca6b5d22d23 | |
parent | Merge pull request #4129 (diff) | |
download | monero-2fd9be1646e331b68e4ce4ffc221bd81e85f4eaa.tar.xz |
simplewallet: correct number of human-readable months
-rw-r--r-- | src/simplewallet/simplewallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index 775b7c359..0d48dba34 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -6268,7 +6268,7 @@ static std::string get_human_readable_timespan(std::chrono::seconds seconds) if (ts < 3600 * 24 * 30.5) return std::to_string((uint64_t)(ts / (3600 * 24))) + tr(" days"); if (ts < 3600 * 24 * 365.25) - return std::to_string((uint64_t)(ts / (3600 * 24 * 365.25))) + tr(" months"); + return std::to_string((uint64_t)(ts / (3600 * 24 * 30.5))) + tr(" months"); return tr("a long time"); } //---------------------------------------------------------------------------------------------------- |