Skip to content

Commit

Permalink
fix: Devegenesis - add missing args paremeter
Browse files Browse the repository at this point in the history
  • Loading branch information
pbukva committed Jun 14, 2024
1 parent 96914af commit df6ab7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/devgenesis.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,8 +289,8 @@ def replace_validator_keys(args: ap.Namespace):


def main():
args, parser = parse_commandline()
args.func()
args, _ = parse_commandline()
args.func(args)


if __name__ == "__main__":
Expand Down

0 comments on commit df6ab7d

Please sign in to comment.