diff --git a/.github/workflows/publish-srtool-wasm.yml b/.github/workflows/publish-srtool-wasm.yml index 1713ea43b..70a26008b 100644 --- a/.github/workflows/publish-srtool-wasm.yml +++ b/.github/workflows/publish-srtool-wasm.yml @@ -38,6 +38,12 @@ jobs: cat ${{ matrix.chain }}-srtool-digest.json echo "Runtime location: ${{ steps.srtool_build.outputs.wasm }}" + echo Summary: + echo - version: ${{ steps.srtool_build.outputs.version }} + echo - info: ${{ steps.srtool_build.outputs.info }} + echo - prop: ${{ steps.srtool_build.outputs.proposal_hash }} + echo - json: ${{ steps.srtool_build.outputs.json }} + - name: Upload ${{ matrix.chain }} wasm to release if: matrix.chain == 'mainnet' uses: svenstaro/upload-release-action@v2 diff --git a/runtime/mainnet/src/filters.rs b/runtime/mainnet/src/filters.rs index 02241147e..791776d01 100644 --- a/runtime/mainnet/src/filters.rs +++ b/runtime/mainnet/src/filters.rs @@ -33,16 +33,10 @@ impl Contains for MainnetCallFilter { } match call { - // Filter democracy proposals creation - RuntimeCall::Democracy(_) | - // disallow council - RuntimeCall::Council(_) | // Block jobs and roles pallet - RuntimeCall::Roles(_) | - RuntimeCall::Jobs(_) => false, + RuntimeCall::Roles(_) | RuntimeCall::Jobs(_) => false, // al other calls are allowed - _ =>true - + _ => true, } } }