(&self)
| 1312 | } |
| 1313 | |
| 1314 | pub async fn get_operator_utxos(&self) -> Vec<Utxo> { |
| 1315 | self.esplora |
| 1316 | .get_address_utxo(self.get_operator_address()) |
| 1317 | .await |
| 1318 | .unwrap() |
| 1319 | } |
| 1320 | |
| 1321 | pub fn get_depositor_address(&self) -> Address { |
| 1322 | if let Some(ref context) = self.depositor_context { |
no test coverage detected