No prefix for wallets in monero harness

Prefixing docker-containers and -networks is a necessity to be able to spin up multiple containers and networks.
However, there is no reason to prefix the wallet names that live inside a container. One cannot add a wallet with
the same name twice, so the prefixing of wallets does not bring any advantage. When re-opening a wallet by name
the wallet name prefix is cumbersome and was thus removed.
This commit is contained in:
Daniel Karzel 2021-03-03 10:56:49 +11:00
parent 9f53dab3c6
commit 2bb1c1e177
4 changed files with 17 additions and 31 deletions

View file

@ -597,7 +597,7 @@ async fn init_test_wallets(
let xmr_wallet = swap::monero::Wallet::new_with_client(
monero.wallet(name).unwrap().client(),
monero::Network::default(),
"irrelevant_for_tests".to_string(),
name.to_string(),
);
let electrum_rpc_url = {