You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let signer = BlsSecretKey::key_gen(&MOCK_RELAY_SECRET,&[]).unwrap();
142
-
let pubkey:BlsPublicKey = blst_pubkey_to_alloy(&signer.sk_to_pk());
139
+
let signer = BlsSecretKey::deserialize(&MOCK_RELAY_SECRET).unwrap();
140
+
let pubkey:BlsPublicKey = signer.public_key();
143
141
144
142
assert_eq!(relay_config.entry.pubkey, pubkey,"Expected relay pubkey to be 0xb060572f535ba5615b874ebfef757fbe6825352ad257e31d724e57fe25a067a13cfddd0f00cb17bf3a3d2e901a380c17");
0 commit comments