(
&'s mut self,
subnet_name: &SubnetName,
deployer: &'a M::Account,
urls: Vec<Url>,
)
| 63 | } |
| 64 | |
| 65 | async fn new_deployment<'s, 'a>( |
| 66 | &'s mut self, |
| 67 | subnet_name: &SubnetName, |
| 68 | deployer: &'a M::Account, |
| 69 | urls: Vec<Url>, |
| 70 | ) -> anyhow::Result<M::Deployment> |
| 71 | where |
| 72 | 's: 'a, |
| 73 | { |
| 74 | tracing::info!(%subnet_name, ctx=self.ctx, %deployer, "new_deployment"); |
| 75 | self.inner.new_deployment(subnet_name, deployer, urls).await |
| 76 | } |
| 77 | |
| 78 | fn existing_deployment( |
| 79 | &mut self, |
no outgoing calls