From a2d824a83a40895860891076c7651ccb1ae8813f Mon Sep 17 00:00:00 2001 From: Alberto Date: Fri, 21 Jun 2024 15:25:47 +0200 Subject: [PATCH] chore: removed TODO Decided not to change these names as this is a very small detail. --- contracts/main/CurveTwocrypto.vy | 4 ---- 1 file changed, 4 deletions(-) diff --git a/contracts/main/CurveTwocrypto.vy b/contracts/main/CurveTwocrypto.vy index 586293c..18197f6 100644 --- a/contracts/main/CurveTwocrypto.vy +++ b/contracts/main/CurveTwocrypto.vy @@ -1349,10 +1349,6 @@ def _calc_withdraw_one_coin( xp: New scaled balances after withdrawal. approx_fee: Fee charged on the ith token (do not use for calculations). """ - # TODO nomenclature incosistent: - # token_supply -> total_supply - # token_amount -> amount - token_supply: uint256 = self.totalSupply assert token_amount <= token_supply # dev: token amount more than supply assert i < N_COINS # dev: coin out of range