mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-09-20 12:54:37 -04:00
Remove Alice and Bob from utility struct
This commit is contained in:
parent
306176b3e6
commit
f0fbe785c8
4 changed files with 35 additions and 50 deletions
|
@ -130,7 +130,10 @@ pub async fn init_test(
|
|||
|
||||
let fund_alice = TEN_XMR;
|
||||
let fund_bob = 0;
|
||||
monero.init(fund_alice, fund_bob).await.unwrap();
|
||||
monero
|
||||
.init(vec![("alice", fund_alice), ("bob", fund_bob)])
|
||||
.await
|
||||
.unwrap();
|
||||
|
||||
let alice_monero_wallet = wallet::monero::Wallet(monero.wallet("alice").unwrap().inner());
|
||||
let bob_monero_wallet = wallet::monero::Wallet(monero.wallet("bob").unwrap().inner());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue