Skip to content

Commit

Permalink
fix error msg to match Go msg
Browse files Browse the repository at this point in the history
  • Loading branch information
shyba committed Sep 2, 2021
1 parent ab04fe9 commit c010a7a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lbry/error/README.md
Expand Up @@ -57,7 +57,7 @@ Code | Name | Message
420 | KeyFeeAboveMaxAllowed | {message}
421 | InvalidPassword | Password is invalid.
422 | IncompatibleWalletServer | '{server}:{port}' has an incompatibly old version.
423 | TooManyClaimSearchParameters | {key} cant be set for more than {limit} items.
423 | TooManyClaimSearchParameters | {key} cant have more than {limit} items.
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
2 changes: 1 addition & 1 deletion lbry/error/__init__.py
Expand Up @@ -247,7 +247,7 @@ class TooManyClaimSearchParametersError(WalletError):
def __init__(self, key, limit):
self.key = key
self.limit = limit
super().__init__(f"{key} cant be set for more than {limit} items.")
super().__init__(f"{key} cant have more than {limit} items.")


class ServerPaymentInvalidAddressError(WalletError):
Expand Down

0 comments on commit c010a7a

Please sign in to comment.