@@ -65,7 +65,7 @@ BOOST_AUTO_TEST_CASE(base58_DecodeBase58)
6565 BOOST_CHECK (!DecodeBase58 (" invalid\0 " s, result, 100 ));
6666 BOOST_CHECK (!DecodeBase58 (" \0 invalid" s, result, 100 ));
6767
68- BOOST_CHECK (DecodeBase58 (" good" s, result, 100 ));
68+ BOOST_CHECK ( DecodeBase58 (" good" s, result, 100 ));
6969 BOOST_CHECK (!DecodeBase58 (" bad0IOl" s, result, 100 ));
7070 BOOST_CHECK (!DecodeBase58 (" goodbad0IOl" s, result, 100 ));
7171 BOOST_CHECK (!DecodeBase58 (" good\0 bad0IOl" s, result, 100 ));
@@ -76,7 +76,7 @@ BOOST_AUTO_TEST_CASE(base58_DecodeBase58)
7676 constexpr auto expected{" 971a55" _hex_u8};
7777 BOOST_CHECK_EQUAL_COLLECTIONS (result.begin (), result.end (), expected.begin (), expected.end ());
7878
79- BOOST_CHECK (DecodeBase58Check (" 3vQB7B6MrGQZaxCuFg4oh" s, result, 100 ));
79+ BOOST_CHECK ( DecodeBase58Check (" 3vQB7B6MrGQZaxCuFg4oh" s, result, 100 ));
8080 BOOST_CHECK (!DecodeBase58Check (" 3vQB7B6MrGQZaxCuFg4oi" s, result, 100 ));
8181 BOOST_CHECK (!DecodeBase58Check (" 3vQB7B6MrGQZaxCuFg4oh0IOl" s, result, 100 ));
8282 BOOST_CHECK (!DecodeBase58Check (" 3vQB7B6MrGQZaxCuFg4oh\0 " " 0IOl" s, result, 100 ));
0 commit comments