libwallet_api: Added option to restore from specific height

This commit is contained in:
Jacob Brydolf
2016-10-08 00:57:09 +02:00
parent 9798bde11e
commit 36a89ab435
5 changed files with 20 additions and 3 deletions
+1 -1
View File
@@ -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);