(
&mut self,
)
| 2475 | } |
| 2476 | |
| 2477 | fn all_presigned_txs_mut( |
| 2478 | &mut self, |
| 2479 | ) -> impl Iterator<Item = &mut dyn PreSignedMusig2Transaction> { |
| 2480 | let all_txs: Vec<&mut dyn PreSignedMusig2Transaction> = vec![ |
| 2481 | &mut self.assert_initial_transaction, |
| 2482 | &mut self.assert_final_transaction, |
| 2483 | &mut self.disprove_chain_transaction, |
| 2484 | &mut self.disprove_transaction, |
| 2485 | &mut self.kick_off_timeout_transaction, |
| 2486 | &mut self.start_time_timeout_transaction, |
| 2487 | &mut self.take_1_transaction, |
| 2488 | &mut self.take_2_transaction, |
| 2489 | ]; |
| 2490 | all_txs.into_iter() |
| 2491 | } |
| 2492 | |
| 2493 | pub fn has_all_nonces_of(&self, context: &VerifierContext) -> bool { |
| 2494 | self.all_presigned_txs() |
no outgoing calls
no test coverage detected