From 3a93a7766e541a02e54f35981b76d327d0dfc44c Mon Sep 17 00:00:00 2001 From: agatha Date: Mon, 3 Jun 2024 00:21:21 -0400 Subject: [PATCH] update stub comments --- staking/stakecalc2.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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):