diff --git a/staking/stakecalc2.py b/staking/stakecalc2.py index 0632564..25beef8 100644 --- a/staking/stakecalc2.py +++ b/staking/stakecalc2.py @@ -24,7 +24,8 @@ class StakingPool: # 2. Developer funds # 3. Reward stakers - # Update user_balances with new deposit + # Deposit amount minus fee to contract_fund (wallet) + # Update user_balances with deposit amount pass def unstake(self, user: str): @@ -39,6 +40,8 @@ class StakingPool: # 1. Community funds # 2. Developer funds # 3. Reward stakers + + # Transfer tokens from contract_funds (wallet) to user's wallet address pass def dev_withdrawal(self, destination: str, amount: float):