Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Fix] Remove input file reference #358

Merged
merged 1 commit into from
Apr 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions documentation/leo/05_commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,6 @@ package/
├── program.json # Your program manifest
├── README.md # Your program description
├── build/
├── inputs/
│ ├── hello.in # Your program inputs
└── src/
└── main.leo # Your program file
```
Expand Down Expand Up @@ -118,10 +116,6 @@ This will populate the directory `build/` (creating it if it doesn't exist) with
:::tip
Use this command to run your program before [**executing**](#leo-execute) it.
:::
To run a Leo transition function using inputs from the program input `.in` file.
```bash
leo run {$TRANSITION}
```

To run a Leo transition function with inputs from the command line.
`{$INPUTS}` should be a list of inputs to the program separated by spaces.
Expand All @@ -148,11 +142,6 @@ This command does not synthesize the program circuit or generate proving and ver
Use this command to execute your program and generate a transaction object.
:::

To execute a Leo transition function using inputs from the program input `.in` file.
```bash
leo execute {$TRANSITION}
```

To execute a Leo transition function with inputs from the command line.
`{$INPUTS}` should be a list of inputs to the program separated by spaces.
```bash
Expand Down
Loading