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
406
406
genMaxTxExUnits :: Gen ExUnits
407
407
genMaxTxExUnits =
408
408
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 )
412
412
413
413
genMaxBlockExUnits :: Gen ExUnits
414
414
genMaxBlockExUnits =
415
415
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 )
419
419
420
420
instance EraGen AlonzoEra where
421
421
genEraAuxiliaryData = genAux
You can’t perform that action at this time.
0 commit comments