We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce77637 commit 73c37e6Copy full SHA for 73c37e6
scripts-demo/fund.sh
@@ -4,7 +4,7 @@
4
5
set -euo pipefail
6
7
-trap 'rm -f fundint.txbody' EXIT
+trap 'rm -f funding.txbody' EXIT
8
rm -f funding.txbody funding.tx
9
10
run_cardano_cli() {
@@ -18,3 +18,4 @@ SRC_UTXO=$(run_cardano_cli latest query utxo --address "$SRC_ADDR" | jq -r 'keys
18
run_cardano_cli latest transaction build --tx-in "$SRC_UTXO" --tx-out "$1+$2" --change-address "$SRC_ADDR" --out-file funding.txbody
19
run_cardano_cli latest transaction sign --tx-body-file funding.txbody --signing-key-file testnet-data/utxo-keys/utxo1/utxo.skey --out-file funding.tx
20
run_cardano_cli latest transaction submit --tx-file funding.tx
21
+rm -f funding.txbody funding.tx
0 commit comments