Hi there,
Thanks for helping out I think you’ve solved my problem! Just want to clarify one more thing as I’m trying to create a tx.draft first using the following:
cardano-cli shelley transaction build-raw
–tx-in #
–tx-out $(cat payment.addr)+0
–ttl 0
–fee 0
–out-file tx.draft
–certificate-file pool-registration.cert
–certificate-file delegation.cert
That produces a tx.draft file. Then I run the following command:
cardano-cli shelley transaction calculate-min-fee
–tx-body-file tx.raw
–tx-in-count 1
–tx-out-count 1
–mainnet
–witness-count 1
–byron-witness-count 0
–protocol-params-file protocol.json
I’m then getting the: Error: tx.raw: tx.raw: openBinaryFile: does not exist (No such file or directory)
I think I got something confused with the filenames etc? I guess if there is no tx.raw file to begin with I need to replace change the output file in the first step from tx.draft to tx.raw in order for the second command to work properly?
Many thanks for your help!
S.