Query address - view utxo

I ran the command inside of directory “relay” after the node was started as part of exercise1:

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

I received the following output and I am not finding much info online:

cardano-cli: HandshakeError (Refused NodeToClientV_8 "version data mismatch: NodeToClientVersionData {networkMagic = NetworkMagic {unNetworkMagic = 1097911063}} /= NodeToClientVersionData {networkMagic = NetworkMagic {unNetworkMagic = 42}}"

Your testnet-magic parameter needs to match the network you’re connecting (as indicated in error message, 42 should be 1097911063)

1 Like

Geez, I need to slow down.