pub trait PegQueue {
    type Error: Error;

    fn sbtc_op(&self) -> Result<Option<SbtcOp>, Self::Error>;
    fn poll<N: StacksNode>(&self, stacks_node: &N) -> Result<(), Self::Error>;
    fn acknowledge(
        &self,
        txid: &Txid,
        burn_header_hash: &BurnchainHeaderHash
    ) -> Result<(), Self::Error>; }

Required Associated Types§

Required Methods§

Implementors§