Unverified Commit 148ff3c6 authored by Oleh's avatar Oleh

SKALE-3334 fix build

parent f7d61fc7
......@@ -605,10 +605,10 @@ Json::Value SGXWalletServer::complaintResponseImpl(const string &_polyName, int
shared_ptr <string> encrPoly = readFromDb(_polyName);
verificationVectorMult = getVerificationVectorMult(encrPoly->c_str(), _t, _n, _ind);
auto verificationVectorMult = getVerificationVectorMult(encrPoly->c_str(), _t, _n, _ind);
for (int i = 0; i < _t; i++) {
vector <string> currentCoef = verifVector.at(i);
vector <string> currentCoef = verificationVectorMult.at(i);
for (int j = 0; j < 4; j++) {
result["verificationVectorMult"][i][j] = currentCoef.at(j);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment