diff options
author | Lee Clagett <code@leeclagett.com> | 2019-05-21 15:43:27 -0400 |
---|---|---|
committer | Lee Clagett <code@leeclagett.com> | 2019-05-21 15:43:27 -0400 |
commit | c9aaccf34613efd8b33473d18ac64e56b29cd484 (patch) | |
tree | f01d3dc4b928375dfee546172ba4ea9d76032a36 /src/wallet | |
parent | Merge pull request #5539 (diff) | |
download | monero-c9aaccf34613efd8b33473d18ac64e56b29cd484.tar.xz |
Fix configuration bug; wallet2 --daemon-ssl-allow-any-cert now works.
Diffstat (limited to 'src/wallet')
-rw-r--r-- | src/wallet/wallet2.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 47a278ceb..2a2d912d9 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -399,8 +399,11 @@ std::unique_ptr<tools::wallet2> make_basic(const boost::program_options::variabl { const boost::string_ref real_daemon = boost::string_ref{daemon_address}.substr(0, daemon_address.rfind(':')); + /* If SSL or proxy is enabled, then a specific cert, CA or fingerprint must + be specified. This is specific to the wallet. */ const bool verification_required = - ssl_options.support == epee::net_utils::ssl_support_t::e_ssl_support_enabled || use_proxy; + ssl_options.verification != epee::net_utils::ssl_verification_t::none && + (ssl_options.support == epee::net_utils::ssl_support_t::e_ssl_support_enabled || use_proxy); THROW_WALLET_EXCEPTION_IF( verification_required && !ssl_options.has_strong_verification(real_daemon), |