Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

shelley: fix bug that used maxTxExUnits instead of maxBlockExUnits #3266

Merged
merged 1 commit into from
Jul 14, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ instance ( SL.PraosCrypto c
let pparams = getPParams $ tickedShelleyLedgerState ledgerState
in AlonzoMeasure {
byteSize = ByteSize $ maxTxCapacity ledgerState
, exUnits = getField @"_maxTxExUnits" pparams
, exUnits = getField @"_maxBlockExUnits" pparams
}

pointwiseMin (AlonzoMeasure bs1 (ExUnits mem1 steps1)) (AlonzoMeasure bs2 (ExUnits mem2 steps2)) =
Expand Down