(&self)
| 1327 | } |
| 1328 | |
| 1329 | pub async fn get_depositor_utxos(&self) -> Vec<Utxo> { |
| 1330 | self.esplora |
| 1331 | .get_address_utxo(self.get_depositor_address()) |
| 1332 | .await |
| 1333 | .unwrap() |
| 1334 | } |
| 1335 | |
| 1336 | pub fn push_verifier_nonces(&mut self, graph_id: &GraphId) { |
| 1337 | if self.verifier_context.is_none() { |
no test coverage detected