diff options
author | Jaquee <jaquee.monero@gmail.com> | 2017-08-04 22:34:13 +0200 |
---|---|---|
committer | Jaquee <jaquee.monero@gmail.com> | 2017-10-15 17:32:13 +0200 |
commit | e2a276cbb5f76185c475cac91802bd4f4629abb5 (patch) | |
tree | 7696d221cc70716a6210427606084626cada14e9 /src/wallet/wallet2.h | |
parent | add string_tools::validate_hex() (diff) | |
download | monero-e2a276cbb5f76185c475cac91802bd4f4629abb5.tar.xz |
wallet2: add ssl option to init()
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 ff049552e..3c2330040 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -410,7 +410,7 @@ namespace tools // the minimum block size. bool deinit(); bool init(std::string daemon_address = "http://localhost:8080", - boost::optional<epee::net_utils::http::login> daemon_login = boost::none, uint64_t upper_transaction_size_limit = 0); + boost::optional<epee::net_utils::http::login> daemon_login = boost::none, uint64_t upper_transaction_size_limit = 0, bool ssl = false); void stop() { m_run.store(false, std::memory_order_relaxed); } |