mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-26 13:31:07 +00:00
bd3890da7e
* update basic_add wasm * wasm feature and collator feature * move test parachains around a little * fix wasm build for basic_add * move basic_add to adder, introduce README * minimal basic_add collator * ensure collator messages are sent in the right order * more logging * route consensus statements to all peers * minor bugfixes for parachains * genesis builder accounts for parachain heads * fix parachains tests * targets for txpool * tweak runtime + collator * fix version in adder-collator * consistency for overflowing * adjust comment * fix stable test run * remove dummy registration test * final grumbles
23 lines
354 B
Bash
23 lines
354 B
Bash
#!/usr/bin/env bash
|
|
|
|
ROOT=`dirname "$0"`
|
|
|
|
# A list of directories which contain wasm projects.
|
|
SRCS=(
|
|
"polkadot/runtime/wasm"
|
|
"substrate/executor/wasm"
|
|
"demo/runtime/wasm"
|
|
"substrate/test-runtime/wasm"
|
|
"polkadot/test-parachains/"
|
|
)
|
|
|
|
# Make pushd/popd silent.
|
|
|
|
pushd () {
|
|
command pushd "$@" > /dev/null
|
|
}
|
|
|
|
popd () {
|
|
command popd "$@" > /dev/null
|
|
}
|