Skip to content

Commit 4dda632

Browse files
authored
update for on-chain upgrade to spec version 5 (#178)
1 parent d172b09 commit 4dda632

File tree

9 files changed

+737
-233
lines changed

9 files changed

+737
-233
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ authors = ['MXC Foundation gGmbH <https://t.me/mxcfoundation>', 'Luke Schoen <lu
33
build = 'build.rs'
44
edition = '2018'
55
name = 'datahighway'
6-
version = '3.0.1'
6+
version = '3.0.2'
77

88
[[bin]]
99
name = 'datahighway'
@@ -22,12 +22,12 @@ structopt = '0.3.8'
2222
hex-literal = '0.3.1'
2323

2424
# local node-specific dependencies
25-
datahighway-runtime = { version = '3.0.1', path = '../runtime' }
25+
datahighway-runtime = { version = '3.0.2', path = '../runtime' }
2626

2727
# Substrate dependencies
2828
frame-benchmarking = '3.1.0'
2929
frame-benchmarking-cli = '3.0.0'
30-
module-primitives = { version = '3.0.0', default-features = false, path = '../pallets/primitives' }
30+
module-primitives = { version = '3.0.2', default-features = false, path = '../pallets/primitives' }
3131
pallet-authority-discovery = '3.0.0'
3232
pallet-democracy = '3.0.0'
3333
pallet-im-online = '3.0.0'

node/src/chain-built/chain_def_westlake.json

Lines changed: 221 additions & 221 deletions
Large diffs are not rendered by default.

node/src/chain-built/chain_spec_westlake.json

Lines changed: 504 additions & 0 deletions
Large diffs are not rendered by default.
197 KB
Binary file not shown.

pallets/mining/eligibility/proxy/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mining-eligibility-proxy"
3-
version = "3.0.1"
3+
version = "3.0.2"
44
authors = ["Luke Schoen"]
55
edition = "2018"
66

@@ -31,7 +31,7 @@ std = [
3131
codec = { version = '2.0.0', package = 'parity-scale-codec', default-features = false, features = ['derive'] }
3232
frame-support = { version = '3.0.0', default-features = false }
3333
frame-system = { version = '3.0.0', default-features = false }
34-
module-primitives = { version = '3.0.1', default-features = false, path = '../../../primitives' }
34+
module-primitives = { version = '3.0.2', default-features = false, path = '../../../primitives' }
3535
safe-mix = { version = '1.0.0', default-features = false }
3636
pallet-balances = { version = '3.0.0', default-features = false }
3737
pallet-randomness-collective-flip = { version = '3.0.0', default-features = false }

pallets/primitives/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = 'module-primitives'
3-
version = '3.0.1'
3+
version = '3.0.2'
44
authors = ['Laminar Developers <hello@laminar.one>', 'MXC Foundation GmbH <https://t.me/mxcfoundation>', 'Luke Schoen']
55
edition = '2018'
66

runtime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
authors = ['MXC Foundation gGmbH <https://t.me/mxcfoundation>', 'Luke Schoen <luke@mxc.org>', 'Ilya Beregovskiy <ilya@mxc.org>']
33
edition = '2018'
44
name = 'datahighway-runtime'
5-
version = '3.0.1'
5+
version = '3.0.2'
66

77
[package.metadata.docs.rs]
88
targets = ['x86_64-unknown-linux-gnu']

runtime/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
197197
spec_name: create_runtime_str!("datahighway"),
198198
impl_name: create_runtime_str!("datahighway"),
199199
authoring_version: 2,
200-
spec_version: 4,
200+
spec_version: 5,
201201
impl_version: 2,
202202
apis: RUNTIME_API_VERSIONS,
203203
transaction_version: 2,

0 commit comments

Comments
 (0)