Skip to content

Commit

Permalink
fix prove_parser help text: Test => Prove
Browse files Browse the repository at this point in the history
  • Loading branch information
bbyalcinkaya committed Dec 9, 2024
1 parent 32a7a45 commit e904515
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/komet/komet.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def _argument_parser() -> ArgumentParser:
test_parser = command_parser.add_parser('test', help='Test the soroban contract in the current working directory')
test_parser.add_argument('--wasm', type=FileType('r'), help='Test a specific contract wasm file instead')

prove_parser = command_parser.add_parser('prove', help='Test the soroban contract in the current working directory')
prove_parser = command_parser.add_parser('prove', help='Prove the soroban contract in the current working directory')
prove_parser.add_argument(
'prove_command',
default='run',
Expand Down

0 comments on commit e904515

Please sign in to comment.