(&mut self, context: &OperatorContext, connector_c: &ConnectorC)
| 255 | } |
| 256 | |
| 257 | fn sign_input_3(&mut self, context: &OperatorContext, connector_c: &ConnectorC) { |
| 258 | let input_index = 3; |
| 259 | let prev_outs = &self.prev_outs().clone(); |
| 260 | let merkle_root = connector_c.taproot_merkle_root(); |
| 261 | |
| 262 | populate_p2tr_key_spend_witness( |
| 263 | self.tx_mut(), |
| 264 | input_index, |
| 265 | prev_outs, |
| 266 | TapSighashType::All, |
| 267 | merkle_root, |
| 268 | &context.operator_keypair, |
| 269 | ); |
| 270 | } |
| 271 | |
| 272 | pub fn pre_sign( |
| 273 | &mut self, |
no test coverage detected