update stub comments

This commit is contained in:
agatha 2024-06-03 00:21:21 -04:00
parent 34291c61b3
commit 3a93a7766e

View File

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