Remove dead code

This commit is contained in:
Franck Royer 2021-01-14 13:43:02 +11:00
parent ae8134f04e
commit 898b8bf8b0
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4

View File

@ -31,19 +31,6 @@ pub mod trace;
pub type Never = std::convert::Infallible;
/// Commands sent from Bob to the main task.
#[derive(Clone, Copy, Debug)]
pub enum Cmd {
VerifyAmounts(SwapAmounts),
}
/// Responses sent from the main task back to Bob.
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum Rsp {
VerifiedAmounts,
Abort,
}
/// XMR/BTC swap amounts.
#[derive(Copy, Clone, Debug, Serialize, Deserialize, PartialEq)]
// TODO(Franck): review necessity of this struct