(
&mut self,
verifier_context: &VerifierContext,
secret_nonces: &HashMap<Txid, HashMap<usize, SecNonce>>,
)
| 120 | } |
| 121 | |
| 122 | fn verifier_sign( |
| 123 | &mut self, |
| 124 | verifier_context: &VerifierContext, |
| 125 | secret_nonces: &HashMap<Txid, HashMap<usize, SecNonce>>, |
| 126 | ) { |
| 127 | self.peg_in_confirm_transaction.pre_sign( |
| 128 | verifier_context, |
| 129 | &self.connector_z, |
| 130 | &secret_nonces[&self.peg_in_confirm_transaction.tx().compute_txid()], |
| 131 | ); |
| 132 | } |
| 133 | |
| 134 | fn push_verifier_nonces( |
| 135 | &mut self, |
no test coverage detected