diff options
author | m2049r <30435443+m2049r@users.noreply.github.com> | 2017-08-02 00:41:05 +0200 |
---|---|---|
committer | m2049r <30435443+m2049r@users.noreply.github.com> | 2017-08-03 01:45:45 +0200 |
commit | ad4649ac81f4539e87b17eb7907e0553c7e11098 (patch) | |
tree | 126baebd2efb27d49e24a37ecdca03bc821f4a9d /src/wallet/wallet2.h | |
parent | Merge pull request #2159 (diff) | |
download | monero-ad4649ac81f4539e87b17eb7907e0553c7e11098.tar.xz |
Enable verifying wallet password with having to load wallet.
Diffstat (limited to 'src/wallet/wallet2.h')
-rw-r--r-- | src/wallet/wallet2.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h index e7692badb..b700f8453 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -129,6 +129,8 @@ namespace tools //! Just parses variables. static std::unique_ptr<wallet2> make_dummy(const boost::program_options::variables_map& vm); + static bool verify_password(const std::string& keys_file_name, const std::string& password, bool watch_only); + wallet2(bool testnet = false, bool restricted = false) : m_run(true), m_callback(0), m_testnet(testnet), m_always_confirm_transfers(true), m_print_ring_members(false), m_store_tx_info(true), m_default_mixin(0), m_default_priority(0), m_refresh_type(RefreshOptimizeCoinbase), m_auto_refresh(true), m_refresh_from_block_height(0), m_confirm_missing_payment_id(true), m_ask_password(true), m_min_output_count(0), m_min_output_value(0), m_merge_destinations(false), m_is_initialized(false), m_restricted(restricted), is_old_file_format(false), m_node_rpc_proxy(m_http_client, m_daemon_rpc_mutex) {} struct transfer_details |