diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2018-08-15 17:12:12 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2018-08-15 17:12:12 -0500 |
| commit | ad13b6d25a6191866ac552b8117c0dcad9b1819c (patch) | |
| tree | 65b53f88b0bec530a6632f2714bbfd8c3fff011a /src | |
| parent | 017e07a0354ea01e2aba35dd5ae11c8b2b99170b (diff) | |
| parent | 20eb1921623e31266649903e24b1e10fdda4153f (diff) | |
| download | monzero-core-ad13b6d25a6191866ac552b8117c0dcad9b1819c.tar.gz monzero-core-ad13b6d25a6191866ac552b8117c0dcad9b1819c.tar.xz monzero-core-ad13b6d25a6191866ac552b8117c0dcad9b1819c.zip | |
Merge pull request #4106
20eb192 simplewallet: reword 'seed encryption' to 'seed offset' (moneromooo-monero)
Diffstat (limited to 'src')
| -rw-r--r-- | src/simplewallet/simplewallet.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index 9b301447e..69f7aebab 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -628,7 +628,7 @@ bool simple_wallet::print_seed(bool encrypted) epee::wipeable_string seed_pass; if (encrypted) { - auto pwd_container = password_prompter(tr("Enter optional seed encryption passphrase, empty to see raw seed"), true); + auto pwd_container = password_prompter(tr("Enter optional seed offset passphrase, empty to see raw seed"), true); if (std::cin.eof() || !pwd_container) return true; seed_pass = pwd_container->password(); @@ -2794,7 +2794,7 @@ bool simple_wallet::init(const boost::program_options::variables_map& vm) } } - auto pwd_container = password_prompter(tr("Enter seed encryption passphrase, empty if none"), false); + auto pwd_container = password_prompter(tr("Enter seed offset passphrase, empty if none"), false); if (std::cin.eof() || !pwd_container) return false; epee::wipeable_string seed_pass = pwd_container->password(); |
