Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
albert-llimos committed Oct 12, 2023
1 parent 00d291e commit ab842d3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions scripts/deploy_tokenVestings.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,9 @@ def main():
print(f"Number of staking vesting contracts = {number_staking}")
print(f"Number of non-staking vesting contracts = {number_noStaking}")
print(f"Total number of contracts = {number_staking+number_noStaking}")
print(f"Vesting cliff (only for non-staking) = {vesting_time_cliff//YEAR} years, {(vesting_time_cliff % YEAR)//MONTH} months and {((vesting_time_cliff % YEAR)%MONTH)//DAY} days")
print(
f"Vesting cliff (only for non-staking) = {vesting_time_cliff//YEAR} years, {(vesting_time_cliff % YEAR)//MONTH} months and {((vesting_time_cliff % YEAR)%MONTH)//DAY} days"
)
print(
f"Vesting end (staking & non-staking) = {vesting_time_end//YEAR} years, {(vesting_time_end % YEAR)//MONTH} months and {((vesting_time_end % YEAR)%MONTH)//DAY} days"
)
Expand All @@ -187,7 +189,7 @@ def main():
stFlip_address,
)

# Deploy all the staking contracts
# Deploy all the vesting contracts
for vesting in vesting_list:
(
beneficiary,
Expand Down

0 comments on commit ab842d3

Please sign in to comment.