diff --git a/xmr-btc/tests/e2e.rs b/xmr-btc/tests/e2e.rs index fb2ddeec..d280f26d 100644 --- a/xmr-btc/tests/e2e.rs +++ b/xmr-btc/tests/e2e.rs @@ -1,3 +1,5 @@ +pub mod harness; + use crate::harness::wallet; use bitcoin_harness::Bitcoind; use harness::{ @@ -13,8 +15,6 @@ use tokio::sync::{ }; use xmr_btc::{alice, bitcoin, bob, monero}; -mod harness; - const TEN_XMR: u64 = 10_000_000_000_000; const RELATIVE_REFUND_TIMELOCK: u32 = 1; const RELATIVE_PUNISH_TIMELOCK: u32 = 1; diff --git a/xmr-btc/tests/on_chain.rs b/xmr-btc/tests/on_chain.rs index d8d9e59d..20e937b7 100644 --- a/xmr-btc/tests/on_chain.rs +++ b/xmr-btc/tests/on_chain.rs @@ -1,4 +1,4 @@ -mod harness; +pub mod harness; use anyhow::Result; use genawaiter::GeneratorState;