Skip to content
This repository has been archived by the owner on Oct 9, 2024. It is now read-only.

Commit

Permalink
Fix minimum deposit and withdrawal threshold to 0
Browse files Browse the repository at this point in the history
  • Loading branch information
SuDa2103 committed Jan 23, 2023
1 parent 1b779d5 commit f22f5d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions leaderboard/sort_by_asset_deposit_withdrawal.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ func (s *Service) sortByAssetDepositWithdrawal(socials map[string]verifier.Socia

// The minimum number of unique deposits and withdrawals needed to achieve this reward
minDepositAndWithdrawals := 1
minWithdrawalThreshold := 2000
minDepositThreshold := 2000
minWithdrawalThreshold := 0
minDepositThreshold := 0

// Default: 1 unique asset deposit and 1 unique withdrawal1 from the erc20 bridge

Expand Down

0 comments on commit f22f5d7

Please sign in to comment.