wallet: Fix typo in assert that is compile-time true

This commit is contained in:
MarcoFalke
2020-05-02 13:59:53 -04:00
parent ae32e5ce3d
commit fa47cf9d95
2 changed files with 11 additions and 2 deletions

View File

@@ -13,6 +13,12 @@
BOOST_FIXTURE_TEST_SUITE(script_standard_tests, BasicTestingSetup)
BOOST_AUTO_TEST_CASE(dest_default_is_no_dest)
{
CTxDestination dest;
BOOST_CHECK(!IsValidDestination(dest));
}
BOOST_AUTO_TEST_CASE(script_standard_Solver_success)
{
CKey keys[3];