(&mut self, take_2: &Take2Transaction)
| 288 | } |
| 289 | |
| 290 | pub fn merge(&mut self, take_2: &Take2Transaction) { |
| 291 | merge_transactions(&mut self.tx, &take_2.tx); |
| 292 | merge_musig2_nonces_and_signatures(self, take_2); |
| 293 | } |
| 294 | } |
| 295 | |
| 296 | impl BaseTransaction for Take2Transaction { |
nothing calls this directly
no test coverage detected