mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-08-07 05:52:31 -04:00
fix(swap): Clippy errors (too many arguments, redundant clone)
This commit is contained in:
parent
dc3c937333
commit
015c956273
2 changed files with 2 additions and 1 deletions
|
@ -1152,7 +1152,7 @@ where
|
||||||
min_deposit_until_swap_will_start,
|
min_deposit_until_swap_will_start,
|
||||||
max_deposit_until_maximum_amount_is_reached,
|
max_deposit_until_maximum_amount_is_reached,
|
||||||
min_bitcoin_lock_tx_fee,
|
min_bitcoin_lock_tx_fee,
|
||||||
quote: bid_quote.clone(),
|
quote: bid_quote,
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
@ -67,6 +67,7 @@ pub async fn run_until(
|
||||||
Ok(current_state)
|
Ok(current_state)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[allow(clippy::too_many_arguments)]
|
||||||
async fn next_state(
|
async fn next_state(
|
||||||
swap_id: Uuid,
|
swap_id: Uuid,
|
||||||
state: BobState,
|
state: BobState,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue