fix order() function used in tests that showed an incorrect order (#89)

This commit is contained in:
Conrado Gouvea 2023-07-06 18:20:20 -03:00 committed by GitHub
parent 1ff62a63b4
commit 0db5c8e7e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -184,7 +184,7 @@ pub fn order(point: EdwardsPoint) -> &'static str {
} else if point.is_torsion_free() {
"p"
} else {
"8p"
">p"
}
}