fix(keysetcache): use a portable hash function

will help to make macos faster on the ci
This commit is contained in:
rudy
2022-05-05 08:41:17 +02:00
committed by rudy-6-4
parent f232935592
commit eb1f5b1842
4 changed files with 13 additions and 8 deletions

View File

@@ -235,7 +235,8 @@ KeySetCache::loadOrGenerateSave(ClientParameters &params, uint64_t seed_msb,
}
}
std::cerr << "KeySetCache: miss, regenerating\n";
std::cerr << "KeySetCache: miss, regenerating " << std::string(folderPath)
<< "\n";
OUTCOME_TRY(auto key_set, KeySet::generate(params, seed_msb, seed_lsb));
OUTCOME_TRYV(saveKeys(*key_set, folderPath));