Derive Clone/ on initial states and messages

pull/12/head
Tobin C. Harding 4 years ago
parent 08ec776daa
commit f22729c5da

@ -129,7 +129,7 @@ impl State {
}
}
#[derive(Debug)]
#[derive(Clone, Debug)]
pub struct State0 {
a: bitcoin::SecretKey,
s_a: cross_curve_dleq::Scalar,
@ -215,7 +215,7 @@ impl State0 {
}
}
#[derive(Debug)]
#[derive(Clone, Debug)]
pub struct State1 {
a: bitcoin::SecretKey,
B: bitcoin::PublicKey,

@ -11,7 +11,7 @@ pub enum Message {
Message2(Message2),
}
#[derive(Debug)]
#[derive(Clone, Debug)]
pub struct Message0 {
pub(crate) A: bitcoin::PublicKey,
pub(crate) S_a_monero: monero::PublicKey,
@ -22,13 +22,13 @@ pub struct Message0 {
pub(crate) punish_address: bitcoin::Address,
}
#[derive(Debug)]
#[derive(Clone, Debug)]
pub struct Message1 {
pub(crate) tx_cancel_sig: Signature,
pub(crate) tx_refund_encsig: EncryptedSignature,
}
#[derive(Debug)]
#[derive(Clone, Debug)]
pub struct Message2 {
pub(crate) tx_lock_proof: monero::TransferProof,
}

@ -102,7 +102,7 @@ impl_from_child_enum!(State3, State);
impl_from_child_enum!(State4, State);
impl_from_child_enum!(State5, State);
#[derive(Debug)]
#[derive(Clone, Debug)]
pub struct State0 {
b: bitcoin::SecretKey,
s_b: cross_curve_dleq::Scalar,
@ -190,7 +190,7 @@ impl State0 {
}
}
#[derive(Debug)]
#[derive(Clone, Debug)]
pub struct State1 {
A: bitcoin::PublicKey,
b: bitcoin::SecretKey,

@ -3,7 +3,7 @@ use anyhow::Result;
use ecdsa_fun::{adaptor::EncryptedSignature, Signature};
use std::convert::TryFrom;
#[derive(Debug)]
#[derive(Clone, Debug)]
pub enum Message {
Message0(Message0),
Message1(Message1),
@ -11,7 +11,7 @@ pub enum Message {
Message3(Message3),
}
#[derive(Debug)]
#[derive(Clone, Debug)]
pub struct Message0 {
pub(crate) B: bitcoin::PublicKey,
pub(crate) S_b_monero: monero::PublicKey,
@ -21,18 +21,18 @@ pub struct Message0 {
pub(crate) refund_address: bitcoin::Address,
}
#[derive(Debug)]
#[derive(Clone, Debug)]
pub struct Message1 {
pub(crate) tx_lock: bitcoin::TxLock,
}
#[derive(Debug)]
#[derive(Clone, Debug)]
pub struct Message2 {
pub(crate) tx_punish_sig: Signature,
pub(crate) tx_cancel_sig: Signature,
}
#[derive(Debug)]
#[derive(Clone, Debug)]
pub struct Message3 {
pub(crate) tx_redeem_encsig: EncryptedSignature,
}

Loading…
Cancel
Save