We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ac48cf commit e87943fCopy full SHA for e87943f
libs/ledger-state/bench/Performance.hs
@@ -93,6 +93,9 @@ main = do
93
bench "Tx2" . whnf (applyTx' mempoolEnv mempoolState)
94
, env (pure (extractTx validatedTx3)) $
95
bench "Tx3" . whnf (applyTx' mempoolEnv mempoolState)
96
+ , env
97
+ (pure [validatedTx1, validatedTx2, validatedTx3])
98
+ $ bench "Tx1+Tx2+Tx3" . whnf (F.foldl' (\ms -> fst . applyTx' mempoolEnv ms . extractTx) mempoolState)
99
]
100
, env (pure (getUTxO es)) $ \utxo ->
101
bgroup
0 commit comments