You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
End users would benefit from obtaining information regarding the limit of the mempool, such that, for example, the MempoolSize (and, hence MempoolSnapshot) could be extended to contain not only the its current byte/Tx occupancy, but also the byte limit:
--| The size of a mempool.dataMempoolSize=MempoolSize{msNumTxs::!Word32--^ The number of transactions in the mempool.
, msNumBytes::!Word32--^ The summed byte size of all the transactions in the mempool.
, msMaxBytes::!Word32--^ The upper limit on the byte size of the mempool.}deriving (Eq, Show)
The text was updated successfully, but these errors were encountered:
End users would benefit from obtaining information regarding the limit of the mempool, such that, for example, the
MempoolSize
(and, henceMempoolSnapshot
) could be extended to contain not only the its current byte/Tx occupancy, but also the byte limit:The text was updated successfully, but these errors were encountered: