pub trait ConfirmationCheck {
    type Check: Future<Output = Result<Option<U64>>>;

    fn check(&self) -> Self::Check;
}
Expand description

Checks whether an event has been confirmed.

Required Associated Types

Future resolved when is known whether an event has been confirmed.

Required Methods

Should be called to get future which resolves when confirmation state is known.

Implementors