(&mut self, output_script_pubkey: ScriptBuf)
| 160 | } |
| 161 | |
| 162 | pub fn add_output(&mut self, output_script_pubkey: ScriptBuf) { |
| 163 | let output_index = 1; |
| 164 | self.tx.output[output_index].script_pubkey = output_script_pubkey; |
| 165 | } |
| 166 | |
| 167 | pub fn merge(&mut self, disprove: &KickOffTimeoutTransaction) { |
| 168 | merge_transactions(&mut self.tx, &disprove.tx); |
nothing calls this directly
no outgoing calls
no test coverage detected