diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-10-01 14:06:54 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-12-17 16:12:18 +0000 |
commit | 265290388bd2134108d689818518f7d9c830292c (patch) | |
tree | f4009e97bb83c923349cc5326b954b176ce3cd71 /src/wallet/wallet2.h | |
parent | add multisig core test and factor multisig building blocks (diff) | |
download | monero-265290388bd2134108d689818518f7d9c830292c.tar.xz |
wallet: guard against partly initialized multisig wallet
Diffstat (limited to 'src/wallet/wallet2.h')
-rw-r--r-- | src/wallet/wallet2.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h index 8abc42ff3..79199a30c 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -598,7 +598,7 @@ namespace tools bool testnet() const { return m_testnet; } bool restricted() const { return m_restricted; } bool watch_only() const { return m_watch_only; } - bool multisig(uint32_t *threshold = NULL, uint32_t *total = NULL) const; + bool multisig(bool *ready = NULL, uint32_t *threshold = NULL, uint32_t *total = NULL) const; bool has_multisig_partial_key_images() const; // locked & unlocked balance of given or current subaddress account |