Skip to content

Commit

Permalink
fixup add const
Browse files Browse the repository at this point in the history
  • Loading branch information
PastaPastaPasta committed Apr 21, 2023
1 parent 12d2b92 commit 2a6762f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/dashbls/elements.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ class G2Element {
G2Element Negate() const;
GTElement Pair(const G1Element &a) const;
std::vector<uint8_t> Serialize(bool fLegacy = false) const;
std::array<uint8_t, G2Element::SIZE> SerializeToArray(bool fLegacy = false);
std::array<uint8_t, G2Element::SIZE> SerializeToArray(bool fLegacy = false) const;
G2Element Copy();

friend bool operator==(G2Element const &a, G2Element const &b);
Expand Down

0 comments on commit 2a6762f

Please sign in to comment.