This commit is contained in:
iceman1001 2020-02-24 20:39:32 +01:00
commit 17dd4bc572

View file

@ -1845,7 +1845,6 @@ static bool TestIfKeyExists(uint64_t key) {
num_keys_tested += count; num_keys_tested += count;
hardnested_print_progress(num_acquired_nonces, "(Test: Key found)", 0.0, 0); hardnested_print_progress(num_acquired_nonces, "(Test: Key found)", 0.0, 0);
crypto1_destroy(pcs); crypto1_destroy(pcs);
pthread_mutex_destroy(&statelist_cache_mutex);
return true; return true;
} }
} }
@ -1853,7 +1852,6 @@ static bool TestIfKeyExists(uint64_t key) {
num_keys_tested += count; num_keys_tested += count;
hardnested_print_progress(num_acquired_nonces, "(Test: Key NOT found)", 0.0, 0); hardnested_print_progress(num_acquired_nonces, "(Test: Key NOT found)", 0.0, 0);
crypto1_destroy(pcs); crypto1_destroy(pcs);
pthread_mutex_destroy(&statelist_cache_mutex);
return false; return false;
} }