Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
jorisdral committed May 8, 2024
1 parent 98dbae0 commit c8d9773
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ data Tx = Tx {
deriving stock (Eq, Ord, Generic, Show)
deriving anyclass (NoThunks, NFData)

newtype Token = Token { unToken :: Word8 }
newtype Token = Token { unToken :: Int }
deriving stock (Show, Eq, Ord, Generic)
deriving anyclass (NoThunks, ToExpr, Serialise, NFData)

Expand Down
2 changes: 1 addition & 1 deletion ouroboros-consensus/bench/mempool-bench/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ main = withStdTerminalHandles $ do
where
benchmarkJustAddingTransactions =
bgroup "Just adding" $
fmap benchAddNTxs [10_000, 1_000_000]
fmap benchAddNTxs [10, 100, 1_000, 10_000]
where
benchAddNTxs n =
withResource
Expand Down

0 comments on commit c8d9773

Please sign in to comment.