Skip to content

Commit

Permalink
Skip liquidation bot scens (compound-finance#805)
Browse files Browse the repository at this point in the history
These scenarios are noisy and don't really give us anything actionable to do at this point. Monitoring on-chain liquidity should be done outside of scenarios.
  • Loading branch information
kevincheng96 authored Aug 10, 2023
1 parent ccb6e9b commit cef901a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions scenario/LiquidationBotScenario.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,8 @@ for (let i = 0; i < MAX_ASSETS; i++) {
]
}
};
scenario(
// Skipping these scenarios as they are noisy and should really be moved into a separate monitoring solution
scenario.skip(
`LiquidationBot > liquidates an underwater position of $asset${i} with no maxAmountToPurchase`,
{
upgrade: {
Expand Down Expand Up @@ -340,7 +341,8 @@ for (let i = 0; i < MAX_ASSETS; i++) {
]
}
};
scenario(
// Skipping these scenarios as they are noisy and should really be moved into a separate monitoring solution
scenario.skip(
`LiquidationBot > partially liquidates large position of $asset${i}, by setting maxAmountToPurchase`,
{
upgrade: {
Expand Down

0 comments on commit cef901a

Please sign in to comment.