We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb3150b commit 50ca13fCopy full SHA for 50ca13f
src/qos_core/src/protocol/services/provision.rs
@@ -110,6 +110,10 @@ pub(in crate::protocol) fn provision(
110
let public_key_bytes = pair.public_key().to_bytes();
111
112
if public_key_bytes != manifest_envelope.manifest.namespace.quorum_key {
113
+ panic!("Size: {}\n{:?}\n\nSize: {}\n{:?}",
114
+ public_key_bytes.len(), public_key_bytes,
115
+ manifest_envelope.manifest.namespace.quorum_key.len(),
116
+ manifest_envelope.manifest.namespace.quorum_key);
117
// We did not construct the intended key
118
return Err(ProtocolError::ReconstructionErrorIncorrectPubKey);
119
}
0 commit comments