From f83582d1405b40917fac2ea92ef8198982e95377 Mon Sep 17 00:00:00 2001 From: evan-schott <53463459+evan-schott@users.noreply.github.com> Date: Fri, 26 Apr 2024 13:43:35 -0700 Subject: [PATCH] purge input file refs --- documentation/leo/05_commands.md | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/documentation/leo/05_commands.md b/documentation/leo/05_commands.md index ee024e3daa..0953006c9b 100644 --- a/documentation/leo/05_commands.md +++ b/documentation/leo/05_commands.md @@ -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 ``` @@ -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. @@ -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