* Introduce wasmgovd; disable wasm proposals with wasmd * Update changelog * Setup wasmgov with permission Nobody * Review feedback
11 lines
211 B
Bash
Executable File
11 lines
211 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if test -n "$1"; then
|
|
# need -R not -r to copy hidden files
|
|
cp -R "$1/.wasmd" /root
|
|
cp -R "$1/.wasmcli" /root
|
|
fi
|
|
|
|
mkdir -p /root/log
|
|
wasmgovd start --rpc.laddr tcp://0.0.0.0:26657 --trace
|