Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
thelostone-mc authored Apr 21, 2021
1 parent 6503450 commit 5bd8ea4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/grants/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -1417,7 +1417,7 @@ def grant_details(request, grant_id, grant_slug):

# calculate whether is available
# TODO - do this asyncronously so as not to block the pageload
if is_within_payout_period_for_most_recent_round and not is_blocked_by_kyc:
if is_within_payout_period_for_most_recent_round and not is_blocked_by_kyc and grant.admin_address != '0x0':
if is_team_member or is_staff or is_admin:
w3 = get_web3(grant.network)
match_payouts_abi = settings.MATCH_PAYOUTS_ABI
Expand Down

0 comments on commit 5bd8ea4

Please sign in to comment.