Use VerifiedAmounts

pull/12/head
Tobin C. Harding 4 years ago
parent eed5e8e9a4
commit cc61079826

@ -19,10 +19,10 @@ pub enum Cmd {
VerifyAmounts(SwapAmounts),
}
/// Responses send from the main task back to Bob.
/// Responses sent from the main task back to Bob.
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum Rsp {
Verified,
VerifiedAmounts,
Abort,
}
@ -37,6 +37,7 @@ pub struct SwapAmounts {
pub xmr: xmr_btc::monero::Amount,
}
// TODO: Display in XMR and BTC (not picos and sats).
impl Display for SwapAmounts {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(

@ -158,7 +158,7 @@ fn verify(amounts: SwapAmounts) -> Rsp {
return Rsp::Abort;
}
Rsp::Verified
Rsp::VerifiedAmounts
}
fn is_yes(s: &str) -> bool {

Loading…
Cancel
Save