pub trait FindTxForGetData {
    // Required method
    fn find_tx_for_get_data(
        self: Arc<Self>,
        peer: &dyn NodeInterface,
        gtxid: &GenTxId,
        mempool_req: Option<OffsetDateTime>,
        now: OffsetDateTime
    ) -> TransactionRef;
}

Required Methods§

source

fn find_tx_for_get_data( self: Arc<Self>, peer: &dyn NodeInterface, gtxid: &GenTxId, mempool_req: Option<OffsetDateTime>, now: OffsetDateTime ) -> TransactionRef

Implementors§