pub trait QuorumExt<AccountId, BlockNumber> {
    fn is_quorum_enabled() -> bool;
    fn add_new_withdrawal_in_queue(
        account_id: AccountId,
        asset_id: CurrencyId,
        amount: Balance,
        external_address: Vec<u8>
    ) -> Result<(), DispatchError>; }
Expand description

Quorum traits to share with pallets.

Required Methods§

Get current Quorum status.

Add a new withdrawl to the queue.

Implementors§