pub trait ConfirmationCheck { type Check: Future<Output = Result<Option<U64>>>; // Required method fn check(&self) -> Self::Check; }
Checks whether an event has been confirmed.
Future resolved when is known whether an event has been confirmed.
Should be called to get future which resolves when confirmation state is known.