aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet2_api.h
diff options
context:
space:
mode:
authorIlya Kitaev <mbg033@gmail.com>2016-03-15 23:11:38 +0300
committerIlya Kitaev <mbg033@gmail.com>2016-03-16 14:29:06 +0300
commit62606f11f50b4c68446d3f581c96d5505a0ad6ef (patch)
treec258047ddcbf349f853f82eb71ef74c5af7111bf /src/wallet/wallet2_api.h
parentWallet::address implemented (diff)
downloadmonero-62606f11f50b4c68446d3f581c96d5505a0ad6ef.tar.xz
Wallet::store_to(path, password) implemented;
Diffstat (limited to 'src/wallet/wallet2_api.h')
-rw-r--r--src/wallet/wallet2_api.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet/wallet2_api.h b/src/wallet/wallet2_api.h
index 7a22a88de..c7e7c536c 100644
--- a/src/wallet/wallet2_api.h
+++ b/src/wallet/wallet2_api.h
@@ -66,6 +66,7 @@ struct Wallet
virtual std::string errorString() const = 0;
virtual bool setPassword(const std::string &password) = 0;
virtual std::string address() const = 0;
+ virtual bool store(const std::string &path) = 0;
};
/**