diff options
author | Ilya Kitaev <mbg033@gmail.com> | 2016-08-22 23:14:58 +0300 |
---|---|---|
committer | Ilya Kitaev <mbg033@gmail.com> | 2016-08-22 23:14:58 +0300 |
commit | cbe534db1a3dcca07f60ce487d116f57cf90f385 (patch) | |
tree | 16edfd52490ab5502ad3452de079d0fb2f371c6a /tests/libwallet_api_tests | |
parent | libwallet_api: do not store wallet on close if status is not ok (diff) | |
download | monero-cbe534db1a3dcca07f60ce487d116f57cf90f385.tar.xz |
libwallet_api: tests: removed logged passwords
Diffstat (limited to 'tests/libwallet_api_tests')
-rw-r--r-- | tests/libwallet_api_tests/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/libwallet_api_tests/main.cpp b/tests/libwallet_api_tests/main.cpp index 590096505..f4ef5dbe1 100644 --- a/tests/libwallet_api_tests/main.cpp +++ b/tests/libwallet_api_tests/main.cpp @@ -217,11 +217,11 @@ void open_wallet(Bitmonero::WalletManager *wmgr, Bitmonero::Wallet **wallet, con { if (mutex) mutex->lock(); - LOG_PRINT_L3("opening wallet with password '" << pass << "' in thread: " << std::this_thread::get_id()); + LOG_PRINT_L3("opening wallet in thread: " << std::this_thread::get_id()); *wallet = wmgr->openWallet(WALLET_NAME, pass, true); LOG_PRINT_L3("wallet address: " << (*wallet)->address()); LOG_PRINT_L3("wallet status: " << (*wallet)->status()); - LOG_PRINT_L3("closing wallet with password '" << pass << "' in thread: " << std::this_thread::get_id()); + LOG_PRINT_L3("closing wallet in thread: " << std::this_thread::get_id()); if (mutex) mutex->unlock(); } |