Skip to content
This repository has been archived by the owner on Feb 8, 2018. It is now read-only.

Commit

Permalink
Don't consider balanced valid for has_payout_route
Browse files Browse the repository at this point in the history
  • Loading branch information
chadwhitacre committed Jul 6, 2015
1 parent e75bc53 commit 91cae6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gratipay/models/participant.py
Original file line number Diff line number Diff line change
Expand Up @@ -773,7 +773,7 @@ def get_cryptocoin_addresses(self):

@property
def has_payout_route(self):
for network in ('balanced-ba', 'paypal'):
for network in ('paypal',):
route = ExchangeRoute.from_network(self, network)
if route and not route.error:
return True
Expand Down

0 comments on commit 91cae6d

Please sign in to comment.