-
Notifications
You must be signed in to change notification settings - Fork 789
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into bkchr-message-queue-stuff
- Loading branch information
Showing
31 changed files
with
540 additions
and
164 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
8 changes: 8 additions & 0 deletions
8
bridges/testing/environments/rococo-westend/rococo-start.zndsl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Description: Check if the Rococo parachains started producing blocks reliably | ||
Network: ./bridge_hub_westend_local_network.toml | ||
Creds: config | ||
|
||
# ensure that initialization has completed | ||
asset-hub-rococo-collator1: reports block height is at least 10 within 180 seconds | ||
bridge-hub-rococo-collator1: reports block height is at least 10 within 180 seconds | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
8 changes: 8 additions & 0 deletions
8
bridges/testing/environments/rococo-westend/westend-start.zndsl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Description: Check if the Westend parachains started producing blocks reliably | ||
Network: ./bridge_hub_westend_local_network.toml | ||
Creds: config | ||
|
||
# ensure that initialization has completed | ||
asset-hub-westend-collator1: reports block height is at least 10 within 180 seconds | ||
bridge-hub-westend-collator1: reports block height is at least 10 within 180 seconds | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
title: "FRAME: Support instantiable pallets in tasks." | ||
|
||
doc: | ||
- audience: Runtime Dev | ||
description: | | ||
In FRAME, tasks can now be used in instantiable pallet. Also some fix for expansion with | ||
conditional compilation in construct runtine. | ||
|
||
crates: | ||
- name: frame-support-procedural | ||
bump: patch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
title: '[pallet-revive] fix hardcoded gas in tests' | ||
doc: | ||
- audience: Runtime Dev | ||
description: Fix hardcoded gas limits in tests | ||
crates: | ||
- name: pallet-revive | ||
bump: patch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Schema: Polkadot SDK PRDoc Schema (prdoc) v1.0.0 | ||
# See doc at https://raw.githubusercontent.com/paritytech/polkadot-sdk/master/prdoc/schema_user.json | ||
|
||
title: "Added Trusted Query API calls for Westend and Rococo chains" | ||
|
||
doc: | ||
- audience: Runtime Dev | ||
description: | | ||
Added is_trusted_reserve and is_trusted_teleporter API calls to relay chains. | ||
Given an asset and a location, they return if the chain trusts that location as a reserve or teleporter for that asset respectively. | ||
You can implement them on your runtime by simply calling a helper function on `pallet-xcm`. | ||
```rust | ||
impl xcm_runtime_apis::trusted_query::TrustedQueryApi<Block> for Runtime { | ||
fn is_trusted_reserve(asset: VersionedAsset, location: VersionedLocation) -> Result<bool, xcm_runtime_apis::trusted_query::Error> { | ||
PolkadotXcm::is_trusted_reserve(asset, location) | ||
} | ||
fn is_trusted_teleporter(asset: VersionedAsset, location: VersionedLocation) -> Result<bool, xcm_runtime_apis::trusted_query::Error> { | ||
PolkadotXcm::is_trusted_teleporter(asset, location) | ||
} | ||
} | ||
``` | ||
|
||
- audience: Runtime User | ||
description: | | ||
There's a new runtime API to check if a chain trust a Location as a reserve or teleporter for a given Asset. | ||
It's implemented in all the relays and system parachains in Westend and Rococo. | ||
|
||
crates: | ||
- name: westend-runtime | ||
bump: minor | ||
- name: rococo-runtime | ||
bump: minor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
title: Enable approval-voting-parallel by default on kusama | ||
|
||
doc: | ||
- audience: Node Dev | ||
description: | | ||
Enable approval-voting-parallel by default on kusama | ||
crates: | ||
- name: polkadot-service | ||
bump: patch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.