Restore request-response code to the coordinator

This commit is contained in:
Luke Parker
2025-01-03 13:02:29 -05:00
parent 906e2fb669
commit 49c221cca2
5 changed files with 133 additions and 1 deletions

View File

@@ -43,12 +43,14 @@ impl SigningProtocolRound {
}
}
/// `tributary::Signed` without the nonce.
/// `tributary::Signed` but without the nonce.
///
/// All of our nonces are deterministic to the type of transaction and fields within.
#[derive(Clone, Copy, PartialEq, Eq, Debug)]
pub struct Signed {
/// The signer.
pub signer: <Ristretto as Ciphersuite>::G,
/// The signature.
pub signature: SchnorrSignature<Ristretto>,
}