1
0
Fork 0
mirror of synced 2025-09-24 04:40:05 +00:00

Contract renamed

This commit is contained in:
Jacob Eberhardt 2017-10-30 09:55:54 +01:00
parent 1a2c1401c9
commit f3609c02db

View file

@ -134,7 +134,7 @@ library Pairing {
return pairing(p1, p2);
}
}
contract Test {
contract Verifier {
using Pairing for *;
struct VerifyingKey {
Pairing.G2Point A;
@ -192,11 +192,11 @@ contract Test {
}
event Verified(string);
function verifyTx(
uint[2] a,
uint[2] a,
uint[2] a_p,
uint[2][2] b,
uint[2] b_p,
uint[2] c,
uint[2] c,
uint[2] c_p,
uint[2] h,
uint[2] k,
@ -222,4 +222,4 @@ contract Test {
return false;
}
}
}
}