Skip to content

Commit

Permalink
Unfilter transfer for assets (#1317)
Browse files Browse the repository at this point in the history
* Unfilter transfer for assets

Signed-off-by: Dengjianping <djptux@gmail.com>

* Update polkadot binary

Signed-off-by: Dengjianping <djptux@gmail.com>

* Print polkadot version

Signed-off-by: Dengjianping <djptux@gmail.com>

---------

Signed-off-by: Dengjianping <djptux@gmail.com>
  • Loading branch information
Dengjianping committed Mar 15, 2024
1 parent 6a2bd3c commit 3537f45
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/integration_test_calamari.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ jobs:
chmod +x $HOME/.local/bin/polkadot-execute-worker
chmod +x $HOME/.local/bin/polkadot-prepare-worker
ls -ahl $HOME/.local/bin/
$HOME/.local/bin/polkadot --version
- name: Install dasel cli
run: |
curl -sSLf "$(curl -sSLf https://api.github.com/repos/tomwright/dasel/releases/latest | grep browser_download_url | grep linux_amd64 | grep -v .gz | cut -d\" -f 4)" -L -o $HOME/dasel && chmod +x $HOME/dasel
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/integration_test_manta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ jobs:
chmod +x $HOME/.local/bin/polkadot-execute-worker
chmod +x $HOME/.local/bin/polkadot-prepare-worker
ls -ahl $HOME/.local/bin/
$HOME/.local/bin/polkadot --version
- name: Install dasel cli
shell: bash
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/metadata_diff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,9 @@ jobs:
chmod +x $HOME/manta
- name: Fetch and chmod old release binary
run: |
curl -L -o $HOME/polkadot https://github.com/paritytech/polkadot/releases/download/v1.3.0/polkadot
curl -L -o $HOME/polkadot https://github.com/paritytech/polkadot-sdk/releases/download/polkadot-v1.8.0/polkadot
chmod +x $HOME/polkadot
$HOME/polkadot --version
ls -ahl $HOME/
- name: stop sccache server
run: sccache --stop-server || true
Expand Down
4 changes: 4 additions & 0 deletions runtime/manta/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,10 @@ impl Contains<RuntimeCall> for MantaFilter {
| RuntimeCall::TransactionPause(_)
| RuntimeCall::ZenlinkProtocol(_)
| RuntimeCall::Farming(_)
| RuntimeCall::Assets(
pallet_assets::Call::transfer {..}
| pallet_assets::Call::transfer_keep_alive {..}
)
| RuntimeCall::PolkadotXcm(pallet_xcm::Call::send {..})
| RuntimeCall::AssetManager(
pallet_asset_manager::Call::update_outgoing_filtered_assets {..}
Expand Down

0 comments on commit 3537f45

Please sign in to comment.