diff options
| author | Riccardo Spagni <ric@spagni.net> | 2019-03-27 14:09:11 +0200 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2019-03-27 14:09:11 +0200 |
| commit | 1d83ce8f298850f4c16a110b87245377166cb17c (patch) | |
| tree | 5d1903ab4b132c137b1bb838037f024d6fb8b0d3 /src/wallet/api/wallet.cpp | |
| parent | e4b049da05faeb7e1922d01aeebafa5f696c17d1 (diff) | |
| parent | 7acfa9f3cc7b52c0f4776dde3c3f80674cc3306f (diff) | |
| download | monzero-core-1d83ce8f298850f4c16a110b87245377166cb17c.tar.gz monzero-core-1d83ce8f298850f4c16a110b87245377166cb17c.tar.xz monzero-core-1d83ce8f298850f4c16a110b87245377166cb17c.zip | |
Merge pull request #5090
7acfa9f3 Added socks proxy (tor/i2pd/kovri) support to wallet (Lee Clagett)
Diffstat (limited to 'src/wallet/api/wallet.cpp')
| -rw-r--r-- | src/wallet/api/wallet.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/wallet/api/wallet.cpp b/src/wallet/api/wallet.cpp index d7226b656..82986ba2d 100644 --- a/src/wallet/api/wallet.cpp +++ b/src/wallet/api/wallet.cpp @@ -2173,8 +2173,7 @@ void WalletImpl::pendingTxPostProcess(PendingTransactionImpl * pending) bool WalletImpl::doInit(const string &daemon_address, uint64_t upper_transaction_size_limit, bool ssl) { - // claim RPC so there's no in-memory encryption for now - if (!m_wallet->init(daemon_address, m_daemon_login, upper_transaction_size_limit, ssl)) + if (!m_wallet->init(daemon_address, m_daemon_login, tcp::endpoint{}, upper_transaction_size_limit)) return false; // in case new wallet, this will force fast-refresh (pulling hashes instead of blocks) |
