You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: contracts/crypto-verify/tests/integration.rs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -116,7 +116,7 @@ fn bls12_381_verifies() {
116
116
let signature = hex::decode("82f5d3d2de4db19d40a6980e8aa37842a0e55d1df06bd68bddc8d60002e8e959eb9cfa368b3c1b77d18f02a54fe047b80f0989315f83b12a74fd8679c4f12aae86eaf6ab5690b34f1fddd50ee3cc6f6cdf59e95526d5a5d82aaa84fa6f181e42").unwrap();
117
117
let round:u64 = 72785;
118
118
119
-
let msg = build_bls_message(round,&previous_signature);
119
+
let msg = build_drand_message(round,&previous_signature);
120
120
121
121
letmut serialized = [0;48];
122
122
G1Affine::generator()
@@ -147,7 +147,7 @@ fn bls12_381_errors() {
147
147
148
148
previous_signature[0] ^= 0x3;
149
149
150
-
let msg = build_bls_message(round,&previous_signature);
150
+
let msg = build_drand_message(round,&previous_signature);
0 commit comments