Skip to content

Commit

Permalink
schemes: Drop redundant default assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
xdustinface authored and mariano54 committed Mar 3, 2021
1 parent f14efe9 commit 565e4f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/schemes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ bool CoreMPL::Verify(const G1Element& pubkey, const Bytes& message, const G2Elem

vector<uint8_t> CoreMPL::Aggregate(const vector<vector<uint8_t>> &signatures)
{
vector<G2Element> elements = vector<G2Element>();
vector<G2Element> elements;
for (const vector<uint8_t>& signature : signatures) {
elements.push_back(G2Element::FromByteVector(signature));
}
Expand Down

0 comments on commit 565e4f4

Please sign in to comment.