From a15466d8508a3f2ce1df04ae05a7a606a7864bec Mon Sep 17 00:00:00 2001 From: selsta Date: Wed, 20 Oct 2021 22:18:48 +0200 Subject: [PATCH] wallet2: remove 2 unused variables --- src/wallet/wallet2.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 04a9bc124..d21592dcd 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -314,7 +314,6 @@ void do_prepare_file_names(const std::string& file_path, std::string& keys_file, { keys_file = file_path; wallet_file = file_path; - boost::system::error_code e; if(string_tools::get_extension(keys_file) == "keys") {//provided keys file name wallet_file = string_tools::cut_off_extension(wallet_file); @@ -7090,7 +7089,6 @@ bool wallet2::load_tx(const std::string &signed_filename, std::vector &ptx, std::function accept_func) { std::string s = signed_tx_st; - boost::system::error_code errcode; signed_tx_set signed_txs; const size_t magiclen = strlen(SIGNED_TX_PREFIX) - 1;