diff options
author | stoffu <stoffu@protonmail.ch> | 2019-04-02 10:10:26 +0900 |
---|---|---|
committer | stoffu <stoffu@protonmail.ch> | 2019-04-02 10:11:49 +0900 |
commit | d3018d0f0be47863bb1cc59ee5561f2fdb21f1e8 (patch) | |
tree | b752fded4331ce52d8d1f53cab8c70808cfeccaf | |
parent | Merge pull request #5319 (diff) | |
download | monero-d3018d0f0be47863bb1cc59ee5561f2fdb21f1e8.tar.xz |
api/wallet: fix some wrong namespace
-rw-r--r-- | src/wallet/api/wallet.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet/api/wallet.cpp b/src/wallet/api/wallet.cpp index 82986ba2d..c1303c225 100644 --- a/src/wallet/api/wallet.cpp +++ b/src/wallet/api/wallet.cpp @@ -938,7 +938,7 @@ bool WalletImpl::lightWalletImportWalletRequest(std::string &payment_id, uint64_ { try { - cryptonote::COMMAND_RPC_IMPORT_WALLET_REQUEST::response response; + tools::COMMAND_RPC_IMPORT_WALLET_REQUEST::response response; if(!m_wallet->light_wallet_import_wallet_request(response)){ setStatusError(tr("Failed to send import wallet request")); return false; @@ -2173,7 +2173,7 @@ void WalletImpl::pendingTxPostProcess(PendingTransactionImpl * pending) bool WalletImpl::doInit(const string &daemon_address, uint64_t upper_transaction_size_limit, bool ssl) { - if (!m_wallet->init(daemon_address, m_daemon_login, tcp::endpoint{}, upper_transaction_size_limit)) + if (!m_wallet->init(daemon_address, m_daemon_login, boost::asio::ip::tcp::endpoint{}, upper_transaction_size_limit)) return false; // in case new wallet, this will force fast-refresh (pulling hashes instead of blocks) |