From 55728b850c19403ba8b2aaefe89181640acbd9fd Mon Sep 17 00:00:00 2001 From: josh crites Date: Wed, 30 Aug 2023 10:42:03 -0400 Subject: [PATCH] fix: remove extra transfer arg in CLI Guide (#1887) Removes an extra arg in the CLI guide since the interface changed. # Checklist: Remove the checklist to signal you've completed it. Enable auto-merge if the PR is ready to merge. - [ ] If the pull request requires a cryptography review (e.g. cryptographic algorithm implementations) I have added the 'crypto' tag. - [x] I have reviewed my diff in github, line by line and removed unexpected formatting changes, testing logs, or commented-out code. - [x] Every change is related to the PR description. - [ ] I have [linked](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue) this pull request to relevant issues (if any exist). --- docs/docs/dev_docs/getting_started/cli.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/dev_docs/getting_started/cli.md b/docs/docs/dev_docs/getting_started/cli.md index abaabbe1b97..b3154f4a4a3 100644 --- a/docs/docs/dev_docs/getting_started/cli.md +++ b/docs/docs/dev_docs/getting_started/cli.md @@ -197,7 +197,7 @@ We can now send a transaction to the network. We will transfer funds from the ow ```bash % aztec-cli send transfer \ - --args 543 $ADDRESS $ADDRESS2 \ + --args 543 $ADDRESS2 \ --contract-abi PrivateTokenContractAbi \ --contract-address $CONTRACT_ADDRESS \ --private-key $PRIVATE_KEY