File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
eras/alonzo/test-suite/src/Test/Cardano/Ledger/Alonzo Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -406,16 +406,16 @@ bigStep = 99999
406406genMaxTxExUnits :: Gen ExUnits
407407genMaxTxExUnits =
408408 ExUnits
409- -- Accommodate the maximum number of scripts in a transaction
410- <$> genNatural (10 * bigMem + 1 ) (20 * bigMem + 1 )
411- <*> genNatural (10 * bigStep + 1 ) (20 * bigStep + 1 )
409+ -- Accommodate at least 20 of our scripts in a transaction
410+ <$> genNatural (20 * bigMem + 1 ) (30 * bigMem + 1 )
411+ <*> genNatural (20 * bigStep + 1 ) (30 * bigStep + 1 )
412412
413413genMaxBlockExUnits :: Gen ExUnits
414414genMaxBlockExUnits =
415415 ExUnits
416- -- Accommodate the maximum number of scripts in all transactions in a block
417- <$> genNatural (60 * bigMem + 1 ) (100 * bigMem + 1 )
418- <*> genNatural (60 * bigStep + 1 ) (100 * bigStep + 1 )
416+ -- Accommodate at least 20 of our transactions in a block
417+ <$> genNatural (20 * 20 * bigMem + 1 ) (20 * 30 * bigMem + 1 )
418+ <*> genNatural (20 * 20 * bigStep + 1 ) (20 * 30 * bigStep + 1 )
419419
420420instance EraGen AlonzoEra where
421421 genEraAuxiliaryData = genAux
You can’t perform that action at this time.
0 commit comments