Skip to content

Commit

Permalink
Merge pull request #135 from UnitapApp/develop
Browse files Browse the repository at this point in the history
change chain str
  • Loading branch information
Mohamad Bastin authored Oct 2, 2023
2 parents afeeb94 + 000932e commit b8a5b89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion faucet/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ class Chain(models.Model):
show_in_gastap = models.BooleanField(default=True)

def __str__(self):
return f"{self.pk} - {self.symbol}:{self.chain_id} - {self.chain_name}"
return f"{self.chain_name} - {self.pk} - {self.symbol}:{self.chain_id}"

@property
def has_enough_funds(self):
Expand Down

0 comments on commit b8a5b89

Please sign in to comment.