mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-29 20:47:56 +00:00
Migrate polkadot-primitives to v6 (#1543)
- Async-backing related primitives are stable `primitives::v6` - Async-backing API is now part of `api_version(7)` - It's enabled on Rococo and Westend runtimes --------- Signed-off-by: Andrei Sandu <andrei-mihail@parity.io> Co-authored-by: Andrei Sandu <54316454+sandreim@users.noreply.github.com>
This commit is contained in:
@@ -153,7 +153,7 @@ fn requests_availability_per_relay_parent() {
|
||||
}
|
||||
Some(AllMessages::RuntimeApi(RuntimeApiMessage::Request(
|
||||
_hash,
|
||||
RuntimeApiRequest::StagingAsyncBackingParams(
|
||||
RuntimeApiRequest::AsyncBackingParams(
|
||||
tx,
|
||||
),
|
||||
))) => {
|
||||
@@ -235,7 +235,7 @@ fn requests_validation_data_for_scheduled_matches() {
|
||||
},
|
||||
Some(AllMessages::RuntimeApi(RuntimeApiMessage::Request(
|
||||
_hash,
|
||||
RuntimeApiRequest::StagingAsyncBackingParams(tx),
|
||||
RuntimeApiRequest::AsyncBackingParams(tx),
|
||||
))) => {
|
||||
tx.send(Err(RuntimeApiError::NotSupported {
|
||||
runtime_api_name: "doesnt_matter",
|
||||
@@ -332,7 +332,7 @@ fn sends_distribute_collation_message() {
|
||||
},
|
||||
Some(AllMessages::RuntimeApi(RuntimeApiMessage::Request(
|
||||
_hash,
|
||||
RuntimeApiRequest::StagingAsyncBackingParams(tx),
|
||||
RuntimeApiRequest::AsyncBackingParams(tx),
|
||||
))) => {
|
||||
tx.send(Err(RuntimeApiError::NotSupported {
|
||||
runtime_api_name: "doesnt_matter",
|
||||
@@ -494,7 +494,7 @@ fn fallback_when_no_validation_code_hash_api() {
|
||||
},
|
||||
Some(AllMessages::RuntimeApi(RuntimeApiMessage::Request(
|
||||
_hash,
|
||||
RuntimeApiRequest::StagingAsyncBackingParams(tx),
|
||||
RuntimeApiRequest::AsyncBackingParams(tx),
|
||||
))) => {
|
||||
tx.send(Err(RuntimeApiError::NotSupported {
|
||||
runtime_api_name: "doesnt_matter",
|
||||
|
||||
Reference in New Issue
Block a user