diff options
| author | tobtoht <thotbot@protonmail.com> | 2021-03-12 23:43:58 +0100 |
|---|---|---|
| committer | tobtoht <thotbot@protonmail.com> | 2021-03-12 23:43:58 +0100 |
| commit | 7c4e4c7603d78439649d2095edc544bee4a7567b (patch) | |
| tree | 7613fd625b8e3b862b9065681264b73c76ef4932 /src/wallet/api/wallet2_api.h | |
| parent | b8f3e44a3f7af299c3d6fbf2d21b78d8c99d6d7d (diff) | |
| download | monzero-core-7c4e4c7603d78439649d2095edc544bee4a7567b.tar.gz monzero-core-7c4e4c7603d78439649d2095edc544bee4a7567b.tar.xz monzero-core-7c4e4c7603d78439649d2095edc544bee4a7567b.zip | |
wallet_api: add isDeterministic()
Diffstat (limited to 'src/wallet/api/wallet2_api.h')
| -rw-r--r-- | src/wallet/api/wallet2_api.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/wallet/api/wallet2_api.h b/src/wallet/api/wallet2_api.h index b40b6763f..8ef0ca94d 100644 --- a/src/wallet/api/wallet2_api.h +++ b/src/wallet/api/wallet2_api.h @@ -627,6 +627,12 @@ struct Wallet virtual bool watchOnly() const = 0; /** + * @brief isDeterministic - checks if wallet keys are deterministic + * @return - true if deterministic + */ + virtual bool isDeterministic() const = 0; + + /** * @brief blockChainHeight - returns current blockchain height * @return */ |
