-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
4 changed files
with
6 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,7 +36,7 @@ In this section, we show you how to make private transactions and send funds to | |
To do this, run: | ||
|
||
```shell | ||
miden-client tx new p2id --note-type private <regular-account-id-A> <regular-account-id-B> <faucet-account-id> 50 | ||
miden-client tx new p2id --note-type private --sender <regular-account-id-A> --target <regular-account-id-B> --faucet <faucet-account-id> 50 | ||
``` | ||
|
||
!!! note | ||
|
@@ -59,7 +59,7 @@ In this section, we show you how to make private transactions and send funds to | |
4. Have the second account consume the note. | ||
|
||
```sh | ||
miden-client tx new consume-notes <regular-account-ID-B> <input-note-id> | ||
miden-client tx new consume-notes --account <regular-account-ID-B> <input-note-id> | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
bobbinth
Contributor
|
||
``` | ||
|
||
!!! tip | ||
|
@@ -102,4 +102,4 @@ For more information on the Miden client, refer to the [Miden client documentati | |
|
||
Wanna do more? [Sending public notes](p2p-public.md) | ||
|
||
</br> | ||
</br> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@mFragaBA why did you add those
--account
? It seems to break the tutorial? Or is this change in the CLI only innext
?