bitcoin-txmempool 0.1.16-alpha.0

TxMemPool stores valid-according-to-the-current-best-chain transactions that may be included in the next block
Documentation
crate::ix!();

/**
  | Reason why a transaction was removed
  | from the mempool, this is passed to the
  | notification signal.
  |
  */
pub enum MemPoolRemovalReason {

    /**
      | Expired from mempool
      |
      */
    EXPIRY,      

    /**
      | Removed in size limiting
      |
      */
    SIZELIMIT,   

    /**
      | Removed for reorganization
      |
      */
    REORG,       

    /**
      | Removed for block
      |
      */
    BLOCK,       

    /**
      | Removed for conflict with in-block
      | transaction
      |
      */
    CONFLICT,    

    /**
      | Removed for replacement
      |
      */
    REPLACED,    
}