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