mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-12-01 04:56:41 -05:00
Use VerifiedAmounts
This commit is contained in:
parent
eed5e8e9a4
commit
cc61079826
2 changed files with 4 additions and 3 deletions
|
|
@ -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!(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue