(&self)
| 92 | } |
| 93 | |
| 94 | fn generate_taproot_leaf_2_script(&self) -> ScriptBuf { |
| 95 | generate_timelock_taproot_script( |
| 96 | &self.n_of_n_taproot_public_key, |
| 97 | self.num_blocks_timelock_leaf_2, |
| 98 | ) |
| 99 | } |
| 100 | |
| 101 | fn generate_taproot_leaf_2_tx_in(&self, input: &Input) -> TxIn { |
| 102 | generate_timelock_tx_in(input, self.num_blocks_timelock_leaf_2) |
no test coverage detected