Skip to content

Commit

Permalink
add tests
Browse files Browse the repository at this point in the history
  • Loading branch information
olehnikolaiev committed Feb 22, 2024
1 parent 7968baf commit 2f7d9ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TestUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -816,7 +816,7 @@ void TestUtils::doDKGV2(StubClient &c, int n, int t,
std::cout << "ALL PUBLIC KEYS: " << output << '\n';
std::vector<std::shared_ptr< BLSPublicKeyShare> > allPubKeysFromServer(n);
for (int i = 0; i < n; i++) {
std::string publicKeyStr = allPubKeysJson["result"]["publicKeys"][i].asString();
std::string publicKeyStr = allPubKeysJson["publicKeys"][i].asString();
std::cout << "PK: " << publicKeyStr << '\n';
vector<string> pubKeyVect = splitString( publicKeyStr.c_str(), ':' );
for (size_t j = 0; j < pubKeyVect.size(); ++j) {
Expand Down

0 comments on commit 2f7d9ef

Please sign in to comment.