Skip to content

Commit e7885c3

Browse files
committed
refactor: kill backend.PLONK_FRI
1 parent 3dedc99 commit e7885c3

28 files changed

Lines changed: 4 additions & 10892 deletions

File tree

backend/backend.go

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,11 @@ const (
2929
UNKNOWN ID = iota
3030
GROTH16
3131
PLONK
32-
PLONKFRI
3332
)
3433

3534
// Implemented return the list of proof systems implemented in gnark
3635
func Implemented() []ID {
37-
return []ID{GROTH16, PLONK, PLONKFRI}
36+
return []ID{GROTH16, PLONK}
3837
}
3938

4039
// String returns the string representation of a proof system
@@ -44,8 +43,6 @@ func (id ID) String() string {
4443
return "groth16"
4544
case PLONK:
4645
return "plonk"
47-
case PLONKFRI:
48-
return "plonkFRI"
4946
default:
5047
return "unknown"
5148
}

0 commit comments

Comments
 (0)