Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove unused variable #2

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
3 changes: 1 addition & 2 deletions 02-build-transactions.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ Since we need each of those values in our transaction, we will store them indivi
```sh
MY_TX_HASH="insert your txhash here"
MY_TX_IX="insert your TxIx here"
MY_FUNDS="insert Amount here"
```

Now we need to define how much we want to transfer. It needs to be less than the amount of available funds, also taking into account the fees for the transfer.
Expand Down Expand Up @@ -94,4 +93,4 @@ Congratulations, we have now successfully transfered some ADA. After a couple of

```sh
cardano-cli query utxo --address $OTHER_ADDRESS --testnet-magic $CARDANO_NODE_MAGIC
```
```