Skip to content

Commit

Permalink
Minor fix to wrong error message printed
Browse files Browse the repository at this point in the history
  • Loading branch information
sayomaki authored and mariano54 committed Jul 6, 2021
1 parent b1cd26c commit 3ad7f8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chia/pools/pool_wallet.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def _verify_pooling_state(cls, state) -> Optional[str]:
elif state.relative_lock_height > cls.MAXIMUM_RELATIVE_LOCK_HEIGHT:
err += (
f" Pool relative_lock_height ({state.relative_lock_height})"
f"is greater than recommended maximum ({cls.MINIMUM_RELATIVE_LOCK_HEIGHT})"
f"is greater than recommended maximum ({cls.MAXIMUM_RELATIVE_LOCK_HEIGHT})"
)

if state.pool_url in [None, ""]:
Expand Down

0 comments on commit 3ad7f8e

Please sign in to comment.