unused test

This commit is contained in:
Dmitry Vagner 2023-03-08 15:06:45 -08:00
parent 4a378bce46
commit a96418b36c
3 changed files with 0 additions and 18 deletions

View File

View File

@ -1,17 +0,0 @@
use rand::Rng;
use crate::bls381_arithmetic::Fp;
#[test]
fn test_bls_mul() -> Result<(), ()> {
let mut rng = rand::thread_rng();
let f: Fp = rng.gen::<Fp>();
let g: Fp = rng.gen::<Fp>();
let fg = f * g;
println!("{:#?}", f);
println!("{:#?}", g);
println!("{:#?}", fg);
Ok(())
}

View File

@ -1,6 +1,5 @@
mod account_code;
mod balance;
mod bls381;
mod bn254;
mod core;
mod ecc;