Skip to content

Commit 2f6ecb0

Browse files
author
Alex Sedighi
authored
chore: update boot node urls (#880)
* chore: update boot node urls * feat(runtime-eden): remove migration logic * feat(runtime-eden): bump the runtime version up for future
1 parent f45f5b1 commit 2f6ecb0

File tree

5 files changed

+13
-90
lines changed

5 files changed

+13
-90
lines changed

node/res/eden.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
"id": "para_eden",
44
"chainType": "Live",
55
"bootNodes": [
6-
"/dns4/nodle-bootnode-0.p2p.onfinality.io/tcp/20522/ws/p2p/12D3KooWMv1jzb45EMGZVGjqgoAjmqPrsYchHCQ13McFKL1r75b5",
7-
"/dns4/nodle-bootnode-1.p2p.onfinality.io/tcp/25394/ws/p2p/12D3KooW9tfcevBR9DjD1JznXY7TenxVoDvtuVKndjgWNizjGUCs",
8-
"/dns4/nodle-bootnode-2.p2p.onfinality.io/tcp/29357/ws/p2p/12D3KooWNq4J7wySh7uCGg81UMV7ziZVoASucFWH1wXuAUatukpX"
6+
"/dns4/node-7135078940912492544-0.p2p.onfinality.io/tcp/25394/ws/p2p/12D3KooW9tfcevBR9DjD1JznXY7TenxVoDvtuVKndjgWNizjGUCs",
7+
"/dns4/node-7143081889410338816-0.p2p.onfinality.io/tcp/26912/ws/p2p/12D3KooWJ9cZhE6Ve8GAUucTNPDgWnJKweUU9ZVJKrcocFLZ1mc2",
8+
"/dns4/node-7135619368687267840-0.p2p.onfinality.io/tcp/25808/ws/p2p/12D3KooWHxNfp9db5VgGZegobTCJQKn45aHGkWfU1DJQEvBcLh2G",
9+
"/dns4/node-7189842482392596480-0.p2p.onfinality.io/tcp/20565/ws/p2p/12D3KooWJCkHkF4azaSZ9xEu3ojohKfypU94Au4cdGuJz1M3tbRi"
910
],
1011
"telemetryEndpoints": [
1112
[
@@ -96,4 +97,4 @@
9697
"childrenDefault": {}
9798
}
9899
}
99-
}
100+
}

node/res/eden.spec.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
"id": "para_eden",
44
"chainType": "Live",
55
"bootNodes": [
6-
"/dns4/nodle-bootnode-0.p2p.onfinality.io/tcp/20522/ws/p2p/12D3KooWMv1jzb45EMGZVGjqgoAjmqPrsYchHCQ13McFKL1r75b5",
7-
"/dns4/nodle-bootnode-1.p2p.onfinality.io/tcp/25394/ws/p2p/12D3KooW9tfcevBR9DjD1JznXY7TenxVoDvtuVKndjgWNizjGUCs",
8-
"/dns4/nodle-bootnode-2.p2p.onfinality.io/tcp/29357/ws/p2p/12D3KooWNq4J7wySh7uCGg81UMV7ziZVoASucFWH1wXuAUatukpX"
6+
"/dns4/node-7135078940912492544-0.p2p.onfinality.io/tcp/25394/ws/p2p/12D3KooW9tfcevBR9DjD1JznXY7TenxVoDvtuVKndjgWNizjGUCs",
7+
"/dns4/node-7143081889410338816-0.p2p.onfinality.io/tcp/26912/ws/p2p/12D3KooWJ9cZhE6Ve8GAUucTNPDgWnJKweUU9ZVJKrcocFLZ1mc2",
8+
"/dns4/node-7135619368687267840-0.p2p.onfinality.io/tcp/25808/ws/p2p/12D3KooWHxNfp9db5VgGZegobTCJQKn45aHGkWfU1DJQEvBcLh2G",
9+
"/dns4/node-7189842482392596480-0.p2p.onfinality.io/tcp/20565/ws/p2p/12D3KooWJCkHkF4azaSZ9xEu3ojohKfypU94Au4cdGuJz1M3tbRi"
910
],
1011
"telemetryEndpoints": [
1112
[
@@ -116,4 +117,4 @@
116117
}
117118
}
118119
}
119-
}
120+
}

runtimes/eden/src/lib.rs

Lines changed: 2 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ use {
7070
pub mod constants;
7171
mod genesis_config_presets;
7272
mod implementations;
73-
mod migration;
7473
mod pallets_consensus;
7574
mod pallets_governance;
7675
mod pallets_nodle;
@@ -209,26 +208,9 @@ pub type SignedPayload = generic::SignedPayload<RuntimeCall, SignedExtra>;
209208
/// Extrinsic type that has already been checked.
210209
pub type CheckedExtrinsic = generic::CheckedExtrinsic<AccountId, RuntimeCall, SignedExtra>;
211210

212-
#[allow(deprecated)]
213-
pub type Migrations = (
214-
pallet_contracts::Migration<Runtime>,
215-
cumulus_pallet_xcmp_queue::migration::v4::MigrationToV4<Runtime>,
216-
cumulus_pallet_xcmp_queue::migration::v5::MigrateV4ToV5<Runtime>,
217-
pallet_collator_selection::migration::v2::MigrationToV2<Runtime>,
218-
pallet_xcm::migration::MigrateToLatestXcmVersion<Runtime>,
219-
pallet_identity::migration::versioned::V0ToV1<Runtime, 10>,
220-
migration::FromSpec27<Runtime>,
221-
);
222-
223211
/// Executive: handles dispatch to the various modules.
224-
pub type Executive = frame_executive::Executive<
225-
Runtime,
226-
Block,
227-
frame_system::ChainContext<Runtime>,
228-
Runtime,
229-
AllPalletsWithSystem,
230-
Migrations,
231-
>;
212+
pub type Executive =
213+
frame_executive::Executive<Runtime, Block, frame_system::ChainContext<Runtime>, Runtime, AllPalletsWithSystem>;
232214

233215
#[cfg(feature = "runtime-benchmarks")]
234216
pub type XcmGenericBenchmarks = pallet_xcm_benchmarks::generic::Pallet<Runtime>;

runtimes/eden/src/migration.rs

Lines changed: 0 additions & 61 deletions
This file was deleted.

runtimes/eden/src/version.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
4040
// Version of the runtime specification. A full-node will not attempt to use its native
4141
// runtime in substitute for the on-chain Wasm runtime unless all of `spec_name`,
4242
// `spec_version` and `authoring_version` are the same between Wasm and native.
43-
spec_version: 32,
43+
spec_version: 33,
4444

4545
// Version of the implementation of the specification. Nodes are free to ignore this; it
4646
// serves only as an indication that the code is different; as long as the other two versions

0 commit comments

Comments
 (0)