(&mut self, account_name: &AccountName)
| 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"); |
| 50 | self.inner.create_account(account_name) |
| 51 | } |
| 52 | |
| 53 | async fn fund_from_faucet<'s, 'a>( |
| 54 | &'s mut self, |
nothing calls this directly
no outgoing calls
no test coverage detected