Skip to content

Commit

Permalink
Fix threshold test
Browse files Browse the repository at this point in the history
  • Loading branch information
DefiDebauchery committed Jul 10, 2022
1 parent 3f01e6f commit eb1ee7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gnosis/safe/safe.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def create(
"""

assert owners, "At least one owner must be set"
assert threshold >= len(owners), "Threshold=%d must be >= %d" % (
assert threshold <= len(owners), "Threshold=%d must be <= %d" % (
threshold,
len(owners),
)
Expand Down

0 comments on commit eb1ee7e

Please sign in to comment.