aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/api/wallet_manager.h
diff options
context:
space:
mode:
authorJacob Brydolf <jacob@brydolf.net>2016-10-08 00:57:09 +0200
committerJacob Brydolf <jacob@brydolf.net>2016-10-08 00:57:09 +0200
commit36a89ab435fc5a2bc7860c6dc2448404ea20dc8e (patch)
tree0b9569cf0b6e68fc754876cc07129c23bf869252 /src/wallet/api/wallet_manager.h
parentMerge pull request #1182 (diff)
downloadmonero-36a89ab435fc5a2bc7860c6dc2448404ea20dc8e.tar.xz
libwallet_api: Added option to restore from specific height
Diffstat (limited to '')
-rw-r--r--src/wallet/api/wallet_manager.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/api/wallet_manager.h b/src/wallet/api/wallet_manager.h
index 7585c1af7..2e932a2a1 100644
--- a/src/wallet/api/wallet_manager.h
+++ b/src/wallet/api/wallet_manager.h
@@ -40,7 +40,7 @@ public:
Wallet * createWallet(const std::string &path, const std::string &password,
const std::string &language, bool testnet);
Wallet * openWallet(const std::string &path, const std::string &password, bool testnet);
- virtual Wallet * recoveryWallet(const std::string &path, const std::string &memo, bool testnet);
+ virtual Wallet * recoveryWallet(const std::string &path, const std::string &memo, bool testnet, uint64_t restoreHeight);
virtual bool closeWallet(Wallet *wallet);
bool walletExists(const std::string &path);
std::vector<std::string> findWallets(const std::string &path);