@@ -40,21 +40,21 @@ impl From<anyhow::Error> for Error {
40
40
}
41
41
42
42
pub struct TransactionPipe {
43
- /// The receiver for the mempool client.
43
+ // The receiver for the mempool client.
44
44
mempool_client_receiver : futures_mpsc:: Receiver < MempoolClientRequest > ,
45
- /// Sender for the channel with accepted transactions.
45
+ // Sender for the channel with accepted transactions.
46
46
transaction_sender : mpsc:: Sender < SignedTransaction > ,
47
- /// Access to the ledger DB. TODO: reuse an instance of VMValidator
47
+ // Access to the ledger DB. TODO: reuse an instance of VMValidator
48
48
db_reader : Arc < dyn DbReader > ,
49
- /// State of the Aptos mempool
49
+ // State of the Aptos mempool
50
50
core_mempool : CoreMempool ,
51
- /// Shared reference on the counter of transactions in flight.
51
+ // Shared reference on the counter of transactions in flight.
52
52
transactions_in_flight : Arc < AtomicU64 > ,
53
- /// The configured limit on transactions in flight
53
+ // The configured limit on transactions in flight
54
54
in_flight_limit : u64 ,
55
- /// Timestamp of the last garbage collection
55
+ // Timestamp of the last garbage collection
56
56
last_gc : Instant ,
57
- /// The pool of used sequence numbers
57
+ // The pool of used sequence numbers
58
58
used_sequence_number_pool : UsedSequenceNumberPool ,
59
59
}
60
60
0 commit comments