diff --git a/packages/utils/CHANGELOG.json b/packages/utils/CHANGELOG.json index c9fd40d73f..c35b30f6fa 100644 --- a/packages/utils/CHANGELOG.json +++ b/packages/utils/CHANGELOG.json @@ -1,4 +1,13 @@ [ + { + "version": "4.6.0-beta.1", + "changes": [ + { + "note": "Consolidated FixedMathRevertErrors", + "pr": "TODO" + } + ] + }, { "version": "4.6.0-beta.0", "changes": [ diff --git a/packages/utils/src/fixed_math_revert_errors.ts b/packages/utils/src/fixed_math_revert_errors.ts index 0782600611..5fb1f3ffc4 100644 --- a/packages/utils/src/fixed_math_revert_errors.ts +++ b/packages/utils/src/fixed_math_revert_errors.ts @@ -12,6 +12,7 @@ export enum BinOpErrorCodes { AdditionOverflow, MultiplicationOverflow, DivisionByZero, + DivisionOverflow, } export class SignedValueError extends RevertError {