Trait fuel_tx::Signable

source ·
pub trait Signable: UniqueIdentifier {
    // Required method
    fn sign_inputs(
        &mut self,
        secret: &SecretKey,
        parameters: &ConsensusParameters
    );
}
Expand description

Means that transaction can be singed.

Note: Autogenerated transactions are not signable.

Required Methods§

source

fn sign_inputs(&mut self, secret: &SecretKey, parameters: &ConsensusParameters)

Signs inputs of the transaction.

Implementors§