input-output-hk / cardano-tutorials

ARCHIVED-This content in this repository is now located at https://docs.cardano.org/projects/cardano-node/

Home Page:https://docs.cardano.org/projects/cardano-node/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Solution 2 issues

oneEdoubleD opened this issue · comments

cardano-cli shelley address build \
--payment-verification-key-file payment.vkey \
--stake-verification-key-file stake.vkey \
--out-file payment2.addr

Should be

cardano-cli shelley address build \
--payment-verification-key-file payment2.vkey \
--stake-verification-key-file stake2.vkey \
--out-file payment2.addr
cardano-cli shelley query utxo \
    --address $(cat payment.addr) \
    --testnet-magic 42

Should be

cardano-cli shelley query utxo \
    --address $(cat payment2.addr) \
    --testnet-magic 42

Thanks !! Working to fix this now.

This has been fixed, can be closed.