expose ethereum groth16 proof

This commit is contained in:
psippl 2022-02-27 00:46:30 +01:00
parent 718cbf6fe0
commit 972b34238d
1 changed files with 2 additions and 2 deletions

View File

@ -7,6 +7,6 @@ pub mod util;
use ark_bn254::Parameters;
use ark_ec::bn::Bn;
use ark_groth16::Proof;
pub type Groth16Proof = Proof<Bn<Parameters>>;
pub type Groth16Proof = ark_groth16::Proof<Bn<Parameters>>;
pub type EthereumGroth16Proof = ark_circom::ethereum::Proof;