pub enum Transaction {
    /// A standard transaction, where execution is defined by a script.
    Script: (),
    /// A contract deployment transaction.
    Create: (),
}
Expand description

A transaction type.

Variants

Script: ()

A standard transaction, where execution is defined by a script.

Create: ()

A contract deployment transaction.