fixed missing parenthesis

This commit is contained in:
Riccardo Spagni 2015-12-24 18:11:11 +02:00
parent 514aa724f4
commit 47ca455ea8
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD

View file

@ -1297,7 +1297,7 @@ void wallet2::store()
std::error_code e = tools::replace_file(m_wallet_file, old_file);
THROW_WALLET_EXCEPTION_IF(e, error::file_save_error, m_wallet_file, e);
}
std::error_code e = tools::replace_file(new_file, m_wallet_file
std::error_code e = tools::replace_file(new_file, m_wallet_file);
THROW_WALLET_EXCEPTION_IF(e, error::file_save_error, m_wallet_file, e);
boost::filesystem::remove(old_file);
}