diff options
author | moneroexamples <moneroexamples@tuta.io> | 2018-09-09 12:35:47 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-09-09 12:37:01 +0000 |
commit | 0664a9842172daff09d051ea0f080f1888252171 (patch) | |
tree | d0ce66a4157fed3480a69f2ba3e7cc5ff7e4115b /src/wallet/wallet_rpc_server.cpp | |
parent | Merge pull request #4290 (diff) | |
download | monero-0664a9842172daff09d051ea0f080f1888252171.tar.xz |
wallet_rpc_server: remove some unused code
Diffstat (limited to '')
-rw-r--r-- | src/wallet/wallet_rpc_server.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/wallet/wallet_rpc_server.cpp b/src/wallet/wallet_rpc_server.cpp index 67f26c7a7..9a749cfa2 100644 --- a/src/wallet/wallet_rpc_server.cpp +++ b/src/wallet/wallet_rpc_server.cpp @@ -155,16 +155,7 @@ namespace tools return false; m_vm = vm; - tools::wallet2 *walvars; - std::unique_ptr<tools::wallet2> tmpwal; - if (m_wallet) - walvars = m_wallet; - else - { - tmpwal = tools::wallet2::make_dummy(*m_vm, true, password_prompter); - walvars = tmpwal.get(); - } boost::optional<epee::net_utils::http::login> http_login{}; std::string bind_port = command_line::get_arg(*m_vm, arg_rpc_bind_port); const bool disable_auth = command_line::get_arg(*m_vm, arg_disable_rpc_login); |