Skip to content

Commit

Permalink
remove mul bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
wjblanke committed Jun 8, 2023
1 parent 2f3fac4 commit 796cdf4
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions js-bindings/jsbindings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ EMSCRIPTEN_BINDINGS(blsjs) {
.function("deepcopy", &G1ElementWrapper::Deepcopy)
.function("get_fingerprint", &G1ElementWrapper::GetFingerprint)
.function("add", &G1ElementWrapper::Add)
.function("mul", &G1ElementWrapper::Mul)
.function("equal_to", &G1ElementWrapper::EqualTo);

class_<G2ElementWrapper>("G2Element")
Expand All @@ -85,7 +84,6 @@ EMSCRIPTEN_BINDINGS(blsjs) {
.function("negate", &G2ElementWrapper::Negate)
.function("deepcopy", &G2ElementWrapper::Deepcopy)
.function("add", &G2ElementWrapper::Add)
.function("mul", &G2ElementWrapper::Mul)
.function("equal_to", &G2ElementWrapper::EqualTo);

class_<PrivateKeyWrapper>("PrivateKey")
Expand Down

0 comments on commit 796cdf4

Please sign in to comment.