Skip to content

Commit

Permalink
do not apply revenue hiding in sdai
Browse files Browse the repository at this point in the history
  • Loading branch information
julianmrodri committed Oct 30, 2023
1 parent 6a8fae6 commit 8f94068
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ async function main() {
defaultThreshold: fp('0.0125').toString(), // 1.25%
delayUntilDefault: bn('86400').toString(), // 24h
},
fp('1e-6').toString(), // revenueHiding = 0.0001%
bn(0), // does not require revenue hiding
POT
)
await collateral.deployed()
Expand Down
2 changes: 1 addition & 1 deletion scripts/verification/collateral-plugins/verify_sdai.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ async function main() {
defaultThreshold: fp('0.0125').toString(), // 1.25%
delayUntilDefault: bn('86400').toString(), // 24h
},
fp('1e-6').toString(), // revenueHiding = 0.0001%
bn(0),
POT,
],
'contracts/plugins/assets/dsr/SDaiCollateral.sol:SDaiCollateral'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ const opts = {
itChecksRefPerTokDefault: it,
itChecksPriceChanges: it,
itChecksNonZeroDefaultThreshold: it,
itHasRevenueHiding: it,
itHasRevenueHiding: it.skip,
resetFork,
collateralName: 'SDaiCollateral',
chainlinkDefaultAnswer,
Expand Down

0 comments on commit 8f94068

Please sign in to comment.