(&mut self, output_script_pubkey: ScriptBuf)
| 222 | } |
| 223 | |
| 224 | pub fn add_output(&mut self, output_script_pubkey: ScriptBuf) { |
| 225 | let output_index = 1; |
| 226 | self.tx.output[output_index].script_pubkey = output_script_pubkey; |
| 227 | } |
| 228 | |
| 229 | pub fn merge(&mut self, burn: &StartTimeTimeoutTransaction) { |
| 230 | merge_transactions(&mut self.tx, &burn.tx); |
nothing calls this directly
no outgoing calls
no test coverage detected