(
&mut self,
verifier_context: &VerifierContext,
)
| 297 | } |
| 298 | |
| 299 | fn push_verifier_nonces( |
| 300 | &mut self, |
| 301 | verifier_context: &VerifierContext, |
| 302 | ) -> HashMap<Txid, HashMap<usize, SecNonce>> { |
| 303 | self.all_presigned_txs_mut() |
| 304 | .map(|tx_wrapper| { |
| 305 | ( |
| 306 | tx_wrapper.tx().compute_txid(), |
| 307 | tx_wrapper.push_nonces(verifier_context), |
| 308 | ) |
| 309 | }) |
| 310 | .collect() |
| 311 | } |
| 312 | } |
| 313 | |
| 314 | impl PegOutGraph { |
nothing calls this directly
no test coverage detected