pub enum MintError {
    /// Emitted when attempting to mint zero coins.
    ZeroAmount: (),
}
Expand description

Error log for when something goes wrong when minting assets.

Variants

ZeroAmount: ()

Emitted when attempting to mint zero coins.

Trait Implementations

pub fn abi_encode(self, buffer: Buffer) -> Buffer

pub fn abi_decode(refmut buffer: BufferReader) -> Self