Skip to content

Commit

Permalink
Add parachain staking (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
AurevoirXavier authored Dec 6, 2022
1 parent dc9c57f commit b8a195c
Show file tree
Hide file tree
Showing 72 changed files with 3,262 additions and 384 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,31 +138,31 @@ jobs:
- id: check-crab-runtime-version
name: Check Crab runtime version
run: |
OUTPUT=$(subalfred check runtime --executable darwinia --chain crab-local --live https://rpc.polkadot.io --property version)
OUTPUT=$(subalfred check runtime --executable darwinia --chain crab-dev --live https://rpc.polkadot.io --property version)
OUTPUT="${OUTPUT//'%'/'%25'}​"
OUTPUT="${OUTPUT//$'\n'/'%0A'}"
OUTPUT="${OUTPUT//$'\r'/'%0D'}"
echo "::set-output name=check-crab-runtime-version::$OUTPUT"
- id: check-crab-runtime-storage
name: Check Crab runtime storage
run: |
OUTPUT=$(subalfred check runtime --executable darwinia --chain crab-local --live https://rpc.polkadot.io --property storage)
OUTPUT=$(subalfred check runtime --executable darwinia --chain crab-dev --live https://rpc.polkadot.io --property storage)
OUTPUT="${OUTPUT//'%'/'%25'}​"
OUTPUT="${OUTPUT//$'\n'/'%0A'}"
OUTPUT="${OUTPUT//$'\r'/'%0D'}"
echo "::set-output name=check-crab-runtime-storage::$OUTPUT"
- id: check-darwinia-runtime-version
name: Check Darwinia runtime version
run: |
OUTPUT=$(subalfred check runtime --executable darwinia --chain darwinia-local --live https://rpc.polkadot.io --property version)
OUTPUT=$(subalfred check runtime --executable darwinia --chain darwinia-dev --live https://rpc.polkadot.io --property version)
OUTPUT="${OUTPUT//'%'/'%25'}​"
OUTPUT="${OUTPUT//$'\n'/'%0A'}"
OUTPUT="${OUTPUT//$'\r'/'%0D'}"
echo "::set-output name=check-darwinia-runtime-version::$OUTPUT"
- id: check-darwinia-runtime-storage
name: Check Darwinia runtime storage
run: |
OUTPUT=$(subalfred check runtime --executable darwinia --chain darwinia-local --live https://rpc.polkadot.io --property storage)
OUTPUT=$(subalfred check runtime --executable darwinia --chain darwinia-dev --live https://rpc.polkadot.io --property storage)
OUTPUT="${OUTPUT//'%'/'%25'}​"
OUTPUT="${OUTPUT//$'\n'/'%0A'}"
OUTPUT="${OUTPUT//$'\r'/'%0D'}"
Expand Down
Loading

0 comments on commit b8a195c

Please sign in to comment.