pub trait HandleNotifications {
    fn handle_notifications(
        &mut self,
        notifications: Arc<dyn ChainNotifications>
    ) -> Box<dyn Handler>; }

Required Methods§

| Register handler for notifications. |

Implementors§