From 0c325d140ffc35f453d970322ba7d088a696efd4 Mon Sep 17 00:00:00 2001 From: Marco Guaspari Worms Date: Thu, 5 Oct 2023 11:26:13 -0300 Subject: [PATCH] fix health check dead link --- docs/developers/v3/strategy_development.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/developers/v3/strategy_development.md b/docs/developers/v3/strategy_development.md index 141322232b..b27ad1f1ec 100644 --- a/docs/developers/v3/strategy_development.md +++ b/docs/developers/v3/strategy_development.md @@ -341,7 +341,7 @@ For easy integration with Vaults, front ends, debt allocators, etc. There is the ### [HealthCheck](https://github.com/Schlagonia/tokenized-strategy-periphery/tree/master/src/HealthCheck) -To prevent automated reports from reporting losses/excessive profits that may not be accurate, a strategist can inherit and implement the [HealthCheck](https://github.com/yearn/tokenized-strategy-periphery/blob/master/src/HealthCheck/HealthCheck.sol) contract. This can ensure that a keeper will not call a report that may incorrectly realize incorrect losses or excessive gains. It can cause the report to revert if the gain/loss is outside of the desired bounds and will require manual intervention to ensure the strategy is reporting correctly. +To prevent automated reports from reporting losses/excessive profits that may not be accurate, a strategist can inherit and implement the [HealthCheck](https://github.com/yearn/tokenized-strategy-periphery/blob/master/src/HealthCheck/BaseHealthCheck.sol) contract. This can ensure that a keeper will not call a report that may incorrectly realize incorrect losses or excessive gains. It can cause the report to revert if the gain/loss is outside of the desired bounds and will require manual intervention to ensure the strategy is reporting correctly. NOTE: It is recommended to implement some checks in `_harvestAndReport` for leveraged or manipulatable strategies that could report incorrect losses due to unforeseen circumstances.