Skip to content

Commit

Permalink
TOSQUASH minimize diff
Browse files Browse the repository at this point in the history
  • Loading branch information
nfrisby committed Aug 26, 2024
1 parent a72535c commit 695fe1f
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,7 @@ data MempoolSize = MempoolSize
} deriving (Eq, Show)

instance Semigroup MempoolSize where
MempoolSize xt xb <> MempoolSize yt yb =
MempoolSize (xt + yt) (xb <> yb)
MempoolSize xt xb <> MempoolSize yt yb = MempoolSize (xt + yt) (xb <> yb)

instance Monoid MempoolSize where
mempty = MempoolSize { msNumTxs = 0, msNumBytes = ByteSize32 0 }
Expand Down

0 comments on commit 695fe1f

Please sign in to comment.