aboutsummaryrefslogtreecommitdiff
path: root/src/simplewallet/password_container.h
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2015-06-14 13:09:14 +0200
committerRiccardo Spagni <ric@spagni.net>2015-06-14 13:09:16 +0200
commit66a5c9e50fee08096117266e94ba02d39a7570ea (patch)
treedeb3552b3a30aef447c053cba08338e8005193d5 /src/simplewallet/password_container.h
parentMerge pull request #317 (diff)
parentsimplewallet: allow a different password for the watch-only wallet (diff)
downloadmonero-66a5c9e50fee08096117266e94ba02d39a7570ea.tar.xz
Merge pull request #318
fb20071 simplewallet: allow a different password for the watch-only wallet (moneromooo-monero)
Diffstat (limited to 'src/simplewallet/password_container.h')
-rw-r--r--src/simplewallet/password_container.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/simplewallet/password_container.h b/src/simplewallet/password_container.h
index 8a4191c7a..56dd44cfa 100644
--- a/src/simplewallet/password_container.h
+++ b/src/simplewallet/password_container.h
@@ -48,7 +48,7 @@ namespace tools
bool empty() const { return m_empty; }
const std::string& password() const { return m_password; }
void password(std::string&& val) { m_password = std::move(val); m_empty = false; }
- bool read_password();
+ bool read_password(const char *message = "password");
private:
bool read_from_file();