mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-06-10 16:13:14 -04:00
Fix imports
This commit is contained in:
parent
a4cd75d394
commit
f5cfe014be
3 changed files with 9 additions and 8 deletions
|
@ -88,12 +88,11 @@ pub async fn run_until(
|
|||
state: AliceState,
|
||||
is_target_state: fn(&AliceState) -> bool,
|
||||
mut event_loop_handle: EventLoopHandle,
|
||||
bitcoin_wallet: Arc<crate::bitcoin::Wallet>,
|
||||
monero_wallet: Arc<crate::monero::Wallet>,
|
||||
bitcoin_wallet: Arc<bitcoin::Wallet>,
|
||||
monero_wallet: Arc<monero::Wallet>,
|
||||
config: Config,
|
||||
swap_id: Uuid,
|
||||
db: Database,
|
||||
// TODO: Remove EventLoopHandle!
|
||||
) -> Result<AliceState> {
|
||||
info!("Current state:{}", state);
|
||||
if is_target_state(&state) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue