xmr-btc-swap/xmr-btc/tests/harness/mod.rs

38 lines
832 B
Rust
Raw Normal View History

2020-10-08 00:49:53 +00:00
pub mod node;
pub mod storage;
2020-10-08 00:49:53 +00:00
pub mod transport;
pub mod wallet;
2020-10-08 22:28:51 +00:00
pub mod bob {
use xmr_btc::bob::State;
// TODO: use macro or generics
pub fn is_state5(state: &State) -> bool {
matches!(state, State::State5 { .. })
}
// TODO: use macro or generics
pub fn is_state3(state: &State) -> bool {
matches!(state, State::State3 { .. })
}
}
pub mod alice {
use xmr_btc::alice::State;
// TODO: use macro or generics
pub fn is_state4(state: &State) -> bool {
matches!(state, State::State4 { .. })
}
// TODO: use macro or generics
pub fn is_state5(state: &State) -> bool {
matches!(state, State::State5 { .. })
}
// TODO: use macro or generics
pub fn is_state6(state: &State) -> bool {
matches!(state, State::State6 { .. })
}
}