From 53ef744da47eedf273c7129e1b430e8782cbd0d1 Mon Sep 17 00:00:00 2001 From: supernovahs Date: Mon, 22 Jul 2024 13:41:48 +0530 Subject: [PATCH] make blskeypair default --- crates/crypto/bls/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/crypto/bls/src/lib.rs b/crates/crypto/bls/src/lib.rs index fcc50655..199874f6 100644 --- a/crates/crypto/bls/src/lib.rs +++ b/crates/crypto/bls/src/lib.rs @@ -23,7 +23,7 @@ pub type PublicKey = G1Affine; pub type BlsSignature = G1Affine; pub type OperatorId = H256; -#[derive(Debug)] +#[derive(Debug, Default)] pub struct BlsKeypair { pub private: PrivateKey, pub public: PublicKey,