mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 14:01:02 +00:00
Companion PR for 5023 (#939)
* add extension registrations * update to latest * merge&update
This commit is contained in:
Generated
+129
-125
File diff suppressed because it is too large
Load Diff
@@ -274,4 +274,19 @@ impl sp_externalities::ExtensionStore for ValidationExternalities {
|
|||||||
None
|
None
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn register_extension_with_type_id(
|
||||||
|
&mut self,
|
||||||
|
_type_id: TypeId,
|
||||||
|
_extension: Box<dyn sp_externalities::Extension>,
|
||||||
|
) -> Result<(), sp_externalities::Error> {
|
||||||
|
panic!("register_extension_with_type_id: unsupported feature for parachain validation")
|
||||||
|
}
|
||||||
|
|
||||||
|
fn deregister_extension_by_type_id(
|
||||||
|
&mut self,
|
||||||
|
_type_id: TypeId,
|
||||||
|
) -> Result<(), sp_externalities::Error> {
|
||||||
|
panic!("deregister_extension_by_type_id: unsupported feature for parachain validation")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user