Skip to content

Commit

Permalink
TOSQUASH fixup some Haddock
Browse files Browse the repository at this point in the history
  • Loading branch information
nfrisby committed Aug 26, 2024
1 parent 695fe1f commit b67443d
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b67443d

Please sign in to comment.