@@ -65,7 +65,7 @@ BOOST_AUTO_TEST_CASE(base58_DecodeBase58)
65
65
BOOST_CHECK (!DecodeBase58 (" invalid\0 " s, result, 100 ));
66
66
BOOST_CHECK (!DecodeBase58 (" \0 invalid" s, result, 100 ));
67
67
68
- BOOST_CHECK (DecodeBase58 (" good" s, result, 100 ));
68
+ BOOST_CHECK ( DecodeBase58 (" good" s, result, 100 ));
69
69
BOOST_CHECK (!DecodeBase58 (" bad0IOl" s, result, 100 ));
70
70
BOOST_CHECK (!DecodeBase58 (" goodbad0IOl" s, result, 100 ));
71
71
BOOST_CHECK (!DecodeBase58 (" good\0 bad0IOl" s, result, 100 ));
@@ -76,7 +76,7 @@ BOOST_AUTO_TEST_CASE(base58_DecodeBase58)
76
76
constexpr auto expected{" 971a55" _hex_u8};
77
77
BOOST_CHECK_EQUAL_COLLECTIONS (result.begin (), result.end (), expected.begin (), expected.end ());
78
78
79
- BOOST_CHECK (DecodeBase58Check (" 3vQB7B6MrGQZaxCuFg4oh" s, result, 100 ));
79
+ BOOST_CHECK ( DecodeBase58Check (" 3vQB7B6MrGQZaxCuFg4oh" s, result, 100 ));
80
80
BOOST_CHECK (!DecodeBase58Check (" 3vQB7B6MrGQZaxCuFg4oi" s, result, 100 ));
81
81
BOOST_CHECK (!DecodeBase58Check (" 3vQB7B6MrGQZaxCuFg4oh0IOl" s, result, 100 ));
82
82
BOOST_CHECK (!DecodeBase58Check (" 3vQB7B6MrGQZaxCuFg4oh\0 " " 0IOl" s, result, 100 ));
0 commit comments