diff --git a/ouroboros-consensus/src/ouroboros-consensus/Ouroboros/Consensus/Mempool/TxSeq.hs b/ouroboros-consensus/src/ouroboros-consensus/Ouroboros/Consensus/Mempool/TxSeq.hs index 687bf9fa62..96f0d3dd04 100644 --- a/ouroboros-consensus/src/ouroboros-consensus/Ouroboros/Consensus/Mempool/TxSeq.hs +++ b/ouroboros-consensus/src/ouroboros-consensus/Ouroboros/Consensus/Mempool/TxSeq.hs @@ -202,10 +202,10 @@ splitAfterTicketNo (TxSeq txs) n = case FingerTree.split (\m -> mMaxTicket m > n) txs of (l, r) -> (TxSeq l, TxSeq r) --- | \( O(\log(n)) \). Split the sequence of transactions into two parts --- based on the given @sz@. The first part has transactions whose --- summed '' is less than or equal to the given 'TxSizeInBytes', --- and the second part has the remaining transactions in the sequence. +-- | \( O(\log(n)) \). Split the sequence of transactions into two parts based +-- on the given @sz@. The first part has transactions whose summed @sz@ is less +-- than or equal to the given @sz@, and the second part has the remaining +-- transactions in the sequence. -- splitAfterTxSize :: Measure sz