Skip to content

Commit

Permalink
add isSet to CurvePriceConfig types
Browse files Browse the repository at this point in the history
  • Loading branch information
Whytecrowe committed Nov 6, 2023
1 parent 36d2a02 commit dd1a9ad
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/deploy/missions/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@ export interface ICurvePriceConfig {
baseLength : BigNumber;
precisionMultiplier : BigNumber;
feePercentage : BigNumber;
// isSet : boolean; // TODO need this still?
isSet : boolean;
}
2 changes: 2 additions & 0 deletions test/helpers/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ export const priceConfigDefault : ICurvePriceConfig = {
baseLength: BigNumber.from(4),
precisionMultiplier: precisionMultiDefault,
feePercentage: registrationFeePercDefault,
isSet: true,
};

export const curvePriceConfigEmpty : ICurvePriceConfig = {
Expand All @@ -52,6 +53,7 @@ export const curvePriceConfigEmpty : ICurvePriceConfig = {
baseLength: BigNumber.from(0),
precisionMultiplier: BigNumber.from(0),
feePercentage: BigNumber.from(0),
isSet: true,
};

export const paymentConfigEmpty = {
Expand Down

0 comments on commit dd1a9ad

Please sign in to comment.