Skip to content

Commit

Permalink
Merge branch 'master' into alexg/feat/persist-last-block-number
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilWindle authored Sep 28, 2023
2 parents fe6ffd6 + 08acf90 commit 2c94a51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions yarn-project/cli/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ export function getProgram(log: LogFn, debugLogger: DebugLogger): Command {
program
.command('send')
.description('Calls a function on an Aztec contract.')
.argument('<functionName>', 'Name of Function to view')
.argument('<functionName>', 'Name of function to execute')
.option('-a, --args [functionArgs...]', 'Function arguments', [])
.requiredOption(
'-c, --contract-abi <fileLocation>',
Expand Down Expand Up @@ -416,7 +416,7 @@ export function getProgram(log: LogFn, debugLogger: DebugLogger): Command {
.description(
'Simulates the execution of a view (read-only) function on a deployed contract, without modifying state.',
)
.argument('<functionName>', 'Name of Function to view')
.argument('<functionName>', 'Name of function to call')
.option('-a, --args [functionArgs...]', 'Function arguments', [])
.requiredOption(
'-c, --contract-abi <fileLocation>',
Expand Down

0 comments on commit 2c94a51

Please sign in to comment.