mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-06-05 21:58:55 -04:00
Move definitions out of lib.rs
This commit is contained in:
parent
b88a777bae
commit
f2a25ee49b
16 changed files with 85 additions and 81 deletions
|
@ -2,7 +2,10 @@
|
|||
//! Alice holds XMR and wishes receive BTC.
|
||||
use crate::{
|
||||
bitcoin,
|
||||
bitcoin::{TransactionBlockHeight, WaitForTransactionFinality, WatchForRawTransaction},
|
||||
bitcoin::{
|
||||
timelocks::ExpiredTimelocks, TransactionBlockHeight, WaitForTransactionFinality,
|
||||
WatchForRawTransaction,
|
||||
},
|
||||
config::Config,
|
||||
database,
|
||||
database::Database,
|
||||
|
@ -22,7 +25,6 @@ use crate::{
|
|||
AliceState,
|
||||
},
|
||||
},
|
||||
ExpiredTimelocks,
|
||||
};
|
||||
use anyhow::{bail, Result};
|
||||
use async_recursion::async_recursion;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue