(&mut self, testnet_name: &TestnetName)
| 41 | M::Relayer: Display, |
| 42 | { |
| 43 | async fn create_network(&mut self, testnet_name: &TestnetName) -> anyhow::Result<M::Network> { |
| 44 | tracing::info!(%testnet_name, ctx=self.ctx, "create_network"); |
| 45 | self.inner.create_network(testnet_name).await |
| 46 | } |
| 47 | |
| 48 | fn create_account(&mut self, account_name: &AccountName) -> anyhow::Result<M::Account> { |
| 49 | tracing::info!(%account_name, ctx=self.ctx, "create_account"); |