diff options
author | Riccardo Spagni <ric@spagni.net> | 2016-10-09 14:33:17 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2016-10-09 14:33:17 +0200 |
commit | 8cd01bc37829b8ac22ea2f47e0166355951f301c (patch) | |
tree | 3c4ee2e1bf6648ea00c43ca682f104b87a73812f /src/wallet/api/wallet_manager.h | |
parent | Merge pull request #1191 (diff) | |
parent | libwallet_api: Added option to restore from specific height (diff) | |
download | monero-8cd01bc37829b8ac22ea2f47e0166355951f301c.tar.xz |
Merge pull request #1192
36a89ab libwallet_api: Added option to restore from specific height (Jacob Brydolf)
Diffstat (limited to 'src/wallet/api/wallet_manager.h')
-rw-r--r-- | src/wallet/api/wallet_manager.h | 2 |
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); |