(&mut self, context: &OperatorContext, connector_a: &ConnectorA)
| 104 | } |
| 105 | |
| 106 | fn sign_input_0(&mut self, context: &OperatorContext, connector_a: &ConnectorA) { |
| 107 | pre_sign_taproot_input_default( |
| 108 | self, |
| 109 | 0, |
| 110 | TapSighashType::SinglePlusAnyoneCanPay, |
| 111 | connector_a.generate_taproot_spend_info(), |
| 112 | &vec![&context.operator_keypair], |
| 113 | ); |
| 114 | } |
| 115 | |
| 116 | // allows for aggregating multiple inputs and one refund output |
| 117 | pub fn add_inputs_and_output( |
no test coverage detected