diff options
author | luigi1111 <luigi1111w@gmail.com> | 2018-08-15 17:09:52 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2018-08-15 17:09:52 -0500 |
commit | 017e07a0354ea01e2aba35dd5ae11c8b2b99170b (patch) | |
tree | 2cd6d6fb33d4c215e4f4ea4b5cfd9ea0592b7516 /src/wallet/api/wallet.h | |
parent | Merge pull request #4090 (diff) | |
parent | wallet: allow adjusting number of rounds for the key derivation function (diff) | |
download | monero-017e07a0354ea01e2aba35dd5ae11c8b2b99170b.tar.xz |
Merge pull request #4103
bcab579 wallet: allow adjusting number of rounds for the key derivation function (stoffu)
Diffstat (limited to 'src/wallet/api/wallet.h')
-rw-r--r-- | src/wallet/api/wallet.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/api/wallet.h b/src/wallet/api/wallet.h index 58be686fc..28b73423d 100644 --- a/src/wallet/api/wallet.h +++ b/src/wallet/api/wallet.h @@ -52,7 +52,7 @@ struct Wallet2CallbackImpl; class WalletImpl : public Wallet { public: - WalletImpl(NetworkType nettype = MAINNET); + WalletImpl(NetworkType nettype = MAINNET, bool restricted = false, uint64_t kdf_rounds = 1); ~WalletImpl(); bool create(const std::string &path, const std::string &password, const std::string &language); |