From a15f092db058ecb364d2f056f451b8989cb4a030 Mon Sep 17 00:00:00 2001 From: JustynaBroniszewska Date: Tue, 14 May 2024 13:52:45 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=A8=20Update=20doc?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- contracts/StabilityPool.sol | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/contracts/StabilityPool.sol b/contracts/StabilityPool.sol index 2885497..27fbf88 100644 --- a/contracts/StabilityPool.sol +++ b/contracts/StabilityPool.sol @@ -122,19 +122,6 @@ import "./Interfaces/IVesselManager.sol"; * Please see the implementation spec in the proof document, which closely follows on from the compounded deposit / Collateral amount gain derivations: * https://github.com/liquity/liquity/blob/master/papers/Scalable_Reward_Distribution_with_Compounding_Stakes.pdf * - * - * --- Trinity ISSUANCE TO STABILITY POOL DEPOSITORS --- - * - * An Trinity issuance event occurs at every deposit operation, and every liquidation. - * - * All deposits earn a share of the issued Trinity in proportion to the deposit as a share of total deposits. - * - * Please see the system Readme for an overview: - * https://github.com/liquity/dev/blob/main/README.md#lqty-issuance-to-stability-providers - * - * We use the same mathematical product-sum approach to track Trinity gains for depositors, where 'G' is the sum corresponding to Trinity gains. - * The product P (and snapshot P_t) is re-used, as the ratio P/P_t tracks a deposit's depletion due to liquidations. - * */ contract StabilityPool is ReentrancyGuardUpgradeable, UUPSUpgradeable, TrinityBase, IStabilityPool { using SafeERC20Upgradeable for IERC20Upgradeable;