Skip to content

Commit f423e17

Browse files
committed
Remove logs
1 parent 4edfa17 commit f423e17

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

src/wallet/test/init_tests.cpp

-13
Original file line numberDiff line numberDiff line change
@@ -69,19 +69,9 @@ BOOST_AUTO_TEST_CASE(walletinit_verify_walletdir_no_trailing)
6969
BOOST_CHECK(result == true);
7070
fs::path walletdir = gArgs.GetArg("-walletdir", "");
7171

72-
if (walletdir.has_filename()) {
73-
std::cout << "WALLET DIR HAS FILE NAME " << walletdir.filename() << "\n";
74-
} else {
75-
std::cout << "WALLET DIR DOESN'T HAVE FILENAME : " << walletdir << "\n" ;
76-
}
77-
78-
std::cout << "THE PARENT PATH WILL BE " << walletdir.parent_path() << "\n";
7972
walletdir = walletdir.filename() == "." ? walletdir.parent_path() : walletdir;
8073
fs::path expected_path = fs::canonical(m_walletdir_path_cases["default"]);
8174

82-
std::cout << "VALUE OF WALLET DIR IS " << walletdir << "\n";
83-
std::cout << "VALUE OF EXPECTED PATH IS " << expected_path << "\n";
84-
8575
BOOST_CHECK(walletdir == expected_path);
8676
}
8777

@@ -94,9 +84,6 @@ BOOST_AUTO_TEST_CASE(walletinit_verify_walletdir_no_trailing2)
9484
walletdir = walletdir.filename() == "." ? walletdir.parent_path() : walletdir;
9585
fs::path expected_path = fs::canonical(m_walletdir_path_cases["default"]);
9686

97-
std::cout << "VALUE OF WALLET DIR IS " << walletdir << "\n";
98-
std::cout << "VALUE OF EXPECTED PATH IS " << expected_path << "\n";
99-
10087
BOOST_CHECK(walletdir == expected_path);
10188
}
10289

0 commit comments

Comments
 (0)