Merge pull request #112 from imikushin/fix-paths-in-scripts
Fix paths in scripts
Fix paths in scripts
#!/bin/bash
assets=/workspaces/plutus-pioneer-program/code/Week02/assets
keypath=/workspaces/plutus-pioneer-program/keys
assets=/workspace/code/Week02/assets
keypath=/workspace/keys
name="$1"
collateral="$2"
txin="$3"
#!/bin/bash
assets=/workspaces/plutus-pioneer-program/code/Week02/assets
keypath=/workspaces/plutus-pioneer-program/keys
assets=/workspace/code/Week02/assets
keypath=/workspace/keys
name="$1"
txin="$2"
body="$assets/gift.txbody"
exit 1
fi
path=/workspaces/plutus-pioneer-program/keys
path=/workspace/keys
mkdir -p "$path"
vkey="$path/$1.vkey"
From https://github.com/input-output-hk/th-extras at 53e062bf2b1e3ae933262c4012cf6badc7cd5237
Includes direct 1:1 wrappers for misc builders (#197) and tx_builder (#210)
Wrappers around custom-written code written earlier for the rust crate.
Previous work on the builders/etc updates rust but introduced things caused the WASM to no longer compile. This updates the WASM bindings as well. Includes genesis module that wasn't pushed before.