mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 04:41:03 +00:00
* Companion for Substrate #6269 (nested storage tx) * Adjust to PR changes * Bump to newest substrate * Bump spec
This commit is contained in:
committed by
GitHub
parent
424d61818e
commit
8fb1e2547c
Generated
+138
-136
File diff suppressed because it is too large
Load Diff
@@ -276,6 +276,18 @@ impl sp_externalities::Externalities for ValidationExternalities {
|
|||||||
panic!("storage_append: unsupported feature for parachain validation")
|
panic!("storage_append: unsupported feature for parachain validation")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn storage_start_transaction(&mut self) {
|
||||||
|
panic!("storage_start_transaction: unsupported feature for parachain validation")
|
||||||
|
}
|
||||||
|
|
||||||
|
fn storage_rollback_transaction(&mut self) -> Result<(), ()> {
|
||||||
|
panic!("storage_rollback_transaction: unsupported feature for parachain validation")
|
||||||
|
}
|
||||||
|
|
||||||
|
fn storage_commit_transaction(&mut self) -> Result<(), ()> {
|
||||||
|
panic!("storage_commit_transaction: unsupported feature for parachain validation")
|
||||||
|
}
|
||||||
|
|
||||||
fn wipe(&mut self) {
|
fn wipe(&mut self) {
|
||||||
panic!("wipe: unsupported feature for parachain validation")
|
panic!("wipe: unsupported feature for parachain validation")
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -86,7 +86,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
|
|||||||
spec_name: create_runtime_str!("kusama"),
|
spec_name: create_runtime_str!("kusama"),
|
||||||
impl_name: create_runtime_str!("parity-kusama"),
|
impl_name: create_runtime_str!("parity-kusama"),
|
||||||
authoring_version: 2,
|
authoring_version: 2,
|
||||||
spec_version: 2011,
|
spec_version: 2012,
|
||||||
impl_version: 0,
|
impl_version: 0,
|
||||||
apis: RUNTIME_API_VERSIONS,
|
apis: RUNTIME_API_VERSIONS,
|
||||||
transaction_version: 1,
|
transaction_version: 1,
|
||||||
|
|||||||
@@ -91,7 +91,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
|
|||||||
spec_name: create_runtime_str!("polkadot"),
|
spec_name: create_runtime_str!("polkadot"),
|
||||||
impl_name: create_runtime_str!("parity-polkadot"),
|
impl_name: create_runtime_str!("parity-polkadot"),
|
||||||
authoring_version: 0,
|
authoring_version: 0,
|
||||||
spec_version: 11,
|
spec_version: 12,
|
||||||
impl_version: 0,
|
impl_version: 0,
|
||||||
apis: RUNTIME_API_VERSIONS,
|
apis: RUNTIME_API_VERSIONS,
|
||||||
transaction_version: 0,
|
transaction_version: 0,
|
||||||
|
|||||||
@@ -81,7 +81,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
|
|||||||
spec_name: create_runtime_str!("westend"),
|
spec_name: create_runtime_str!("westend"),
|
||||||
impl_name: create_runtime_str!("parity-westend"),
|
impl_name: create_runtime_str!("parity-westend"),
|
||||||
authoring_version: 2,
|
authoring_version: 2,
|
||||||
spec_version: 31,
|
spec_version: 32,
|
||||||
impl_version: 0,
|
impl_version: 0,
|
||||||
apis: RUNTIME_API_VERSIONS,
|
apis: RUNTIME_API_VERSIONS,
|
||||||
transaction_version: 1,
|
transaction_version: 1,
|
||||||
|
|||||||
Reference in New Issue
Block a user