Skip to content

Commit

Permalink
Use Debian instead of Alpine for monero on testnet
Browse files Browse the repository at this point in the history
  • Loading branch information
kayabaNerve committed Feb 11, 2024
1 parent 95c3cfc commit 95b7460
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion orchestration/src/coins/monero.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,14 @@ CMD ["/run.sh"]
}

pub fn monero(orchestration_path: &Path, network: Network) {
monero_internal(network, Os::Alpine, orchestration_path, "monero", "monerod", "18080 18081")
monero_internal(
network,
if network == Network::Dev { Os::Alpine } else { Os::Debian },
orchestration_path,
"monero",
"monerod",
"18080 18081",
)
}

pub fn monero_wallet_rpc(orchestration_path: &Path) {
Expand Down

0 comments on commit 95b7460

Please sign in to comment.