Skip to content

Commit

Permalink
Merge eb1ee7e into 3f01e6f
Browse files Browse the repository at this point in the history
  • Loading branch information
DefiDebauchery committed Jul 10, 2022
2 parents 3f01e6f + eb1ee7e commit 4eada82
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 4eada82

Please sign in to comment.