pub trait Signable: UniqueIdentifier {
fn sign_inputs(&mut self, secret: &SecretKey);
}
Expand description
Means that transaction can be singed.
Note: Autogenerated transactions are not signable.
Required Methods
sourcefn sign_inputs(&mut self, secret: &SecretKey)
fn sign_inputs(&mut self, secret: &SecretKey)
Signs inputs of the transaction.