Skip to content

Commit

Permalink
fix conflict with imported function
Browse files Browse the repository at this point in the history
  • Loading branch information
shyba committed Sep 28, 2021
1 parent f41c492 commit 9715896
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lbry/error/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Code | Name | Message
421 | InvalidPassword | Password is invalid.
422 | IncompatibleWalletServer | '{server}:{port}' has an incompatibly old version.
423 | TooManyClaimSearchParameters | {key} cant have more than {limit} items.
424 | AlreadyPurchased | You already have a purchase for claim_id '{claim_id}'. Use --allow-duplicate-purchase flag to override.
424 | AlreadyPurchased | You already have a purchase for claim_id '{claim_id_hex}'. Use --allow-duplicate-purchase flag to override.
431 | ServerPaymentInvalidAddress | Invalid address from wallet server: '{address}' - skipping payment round.
432 | ServerPaymentWalletLocked | Cannot spend funds with locked wallet, skipping payment round.
433 | ServerPaymentFeeAboveMaxAllowed | Daily server fee of {daily_fee} exceeds maximum configured of {max_fee} LBC.
Expand Down
6 changes: 3 additions & 3 deletions lbry/error/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,9 +292,9 @@ class AlreadyPurchasedError(WalletError):
allow-duplicate-purchase flag to override.
"""

def __init__(self, claim_id):
self.claim_id = claim_id
super().__init__(f"You already have a purchase for claim_id '{claim_id}'. Use")
def __init__(self, claim_id_hex):
self.claim_id_hex = claim_id_hex
super().__init__(f"You already have a purchase for claim_id '{claim_id_hex}'. Use")


class ServerPaymentInvalidAddressError(WalletError):
Expand Down

0 comments on commit 9715896

Please sign in to comment.