(context: &DepositorContext, connector_z: &ConnectorZ, input_0: Input)
| 43 | |
| 44 | impl PegInRefundTransaction { |
| 45 | pub fn new(context: &DepositorContext, connector_z: &ConnectorZ, input_0: Input) -> Self { |
| 46 | let mut this = Self::new_for_validation( |
| 47 | context.network, |
| 48 | &context.depositor_public_key, |
| 49 | connector_z, |
| 50 | input_0, |
| 51 | ); |
| 52 | |
| 53 | this.sign_input_0(context, connector_z); |
| 54 | |
| 55 | this |
| 56 | } |
| 57 | |
| 58 | pub fn new_with_signature( |
| 59 | network: Network, |
nothing calls this directly
no test coverage detected