1
0
mirror of https://github.com/bitcoin/bips.git synced 2026-07-27 18:13:38 +00:00

bip360: cleanup rust tests a bit and remove unused imports

This commit is contained in:
notmike
2026-06-28 20:33:31 -06:00
parent 75167ec077
commit 3e3e4347e2
9 changed files with 105 additions and 144 deletions

View File

@@ -1,12 +1,6 @@
use std::env;
use log::info;
use once_cell::sync::Lazy;
use bitcoin::hashes::{sha256::Hash, Hash as HashTrait};
use rand::{rng, RngCore};
use bitcoinpqc::{
generate_keypair, public_key_size, secret_key_size, sign, signature_size, verify, Algorithm, KeyPair,
};
use bitcoinpqc::{generate_keypair, sign, verify, Algorithm, KeyPair};
fn main() {
let _ = env_logger::try_init();