Skip to content
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
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