Skip to content
Snippets Groups Projects
Commit 34bc2462 authored by Pierre Krieger's avatar Pierre Krieger Committed by GitHub
Browse files

Don't generate the consensusEngine field in chain specs (#10303)

parent 439af98e
No related merge requests found
...@@ -19,7 +19,6 @@ ...@@ -19,7 +19,6 @@
["wss://telemetry.polkadot.io/submit/", 0] ["wss://telemetry.polkadot.io/submit/", 0]
], ],
"protocolId": "fir", "protocolId": "fir",
"consensusEngine": null,
"genesis": { "genesis": {
"raw": [ "raw": [
{ {
......
...@@ -19,7 +19,6 @@ ...@@ -19,7 +19,6 @@
["wss://telemetry.polkadot.io/submit/", 0] ["wss://telemetry.polkadot.io/submit/", 0]
], ],
"protocolId": "fir", "protocolId": "fir",
"consensusEngine": null,
"myProperty": "Test Extension", "myProperty": "Test Extension",
"genesis": { "genesis": {
"raw": [ "raw": [
......
...@@ -168,6 +168,7 @@ struct ClientSpec<E> { ...@@ -168,6 +168,7 @@ struct ClientSpec<E> {
#[serde(flatten)] #[serde(flatten)]
extensions: E, extensions: E,
// Never used, left only for backward compatibility. // Never used, left only for backward compatibility.
#[serde(default, skip_serializing)]
consensus_engine: (), consensus_engine: (),
#[serde(skip_serializing)] #[serde(skip_serializing)]
#[allow(unused)] #[allow(unused)]
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment