mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2024-10-01 01:45:40 -04:00
9 lines
157 B
Rust
9 lines
157 B
Rust
pub mod alice;
|
|
pub mod bob;
|
|
|
|
#[derive(Debug, Copy, Clone)]
|
|
pub struct StartingBalances {
|
|
pub xmr: crate::monero::Amount,
|
|
pub btc: bitcoin::Amount,
|
|
}
|