Skip to content

Commit

Permalink
test: do not compile ecdsa scalar mul
Browse files Browse the repository at this point in the history
  • Loading branch information
ivokub committed Sep 21, 2022
1 parent 60e1872 commit a121a30
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions std/algebra/sw_emulated/point_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import (

"github.com/consensys/gnark-crypto/ecc"
"github.com/consensys/gnark/frontend"
"github.com/consensys/gnark/frontend/cs/r1cs"
"github.com/consensys/gnark/std/math/emulated"
"github.com/consensys/gnark/test"
"github.com/ethereum/go-ethereum/crypto/secp256k1"
Expand Down Expand Up @@ -154,6 +153,6 @@ func TestScalarMul(t *testing.T) {
}
err := test.IsSolved(&circuit, &witness, testCurve.ScalarField())
assert.NoError(err)
_, err = frontend.Compile(testCurve.ScalarField(), r1cs.NewBuilder, &circuit)
assert.NoError(err)
// _, err = frontend.Compile(testCurve.ScalarField(), r1cs.NewBuilder, &circuit)
// assert.NoError(err)
}

0 comments on commit a121a30

Please sign in to comment.