Skip to content
Snippets Groups Projects
Unverified Commit a26979ce authored by Bernardo Cardoso's avatar Bernardo Cardoso Committed by GitHub
Browse files

Merge pull request #3 from xx-labs/xxnetwork-runtime-205

xxnetwork runtime 205
parents 9ff6c85f 482111b4
No related branches found
Tags v0.2.5
No related merge requests found
This diff is collapsed.
[package]
name = "xxnetwork-cli"
version = "0.2.4"
version = "0.2.5"
authors = ["xxlabs <admin@xx.network>"]
description = "Substrate based, xxnetwork blockchain node implementation in Rust."
build = "build.rs"
......@@ -81,7 +81,7 @@ pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/xx-labs
pallet-im-online = { git = "https://github.com/xx-labs/substrate", branch = "xx-network", default-features = false }
# node-specific dependencies
xxnetwork-runtime = { version = "0.2.4", path = "../runtime/xxnetwork", optional = true }
xxnetwork-runtime = { version = "0.2.5", path = "../runtime/xxnetwork", optional = true }
canary-runtime = { version = "0.2.0", path = "../runtime/canary", optional = true }
node-rpc = { version = "0.2.0", path = "../rpc" }
node-primitives = { version = "0.2.0", path = "../primitives" }
......
......@@ -4,13 +4,9 @@
"chainType": "Live",
"bootNodes": [
"/ip4/44.199.135.176/tcp/15974/p2p/12D3KooWEHCoJu1BzojgbXrvLfYwyKsGNDw5NzDKhoV1RgB91q28",
"/ip4/52.2.42.105/tcp/15974/p2p/12D3KooWCYCyVqFEdrNJ6EoroAbM3zWXJaE8tKJTs5G19uN8Ndxr",
"/ip4/52.8.121.134/tcp/15974/p2p/12D3KooWSi5xCtT1h8BbuCBa42gp1jLVv22TRdZkx8AiDN7sXC9i",
"/ip4/52.8.96.188/tcp/15974/p2p/12D3KooWHN38MhPpGYg26fdH9WBeQGs8zbKdbzQDLehnPKXowV5U",
"/ip4/54.179.218.18/tcp/15974/p2p/12D3KooWPz81XDxwSmPm6cNJog1pC2FinZnZ3t6tUaTXSFm8pvS6",
"/ip4/54.255.84.211/tcp/15974/p2p/12D3KooWFu33XNZJzthxsnUZ5nqgvAbNuDaciLn8YYqyGDuZHsgF",
"/ip4/3.123.188.164/tcp/15974/p2p/12D3KooWPsy3DT5xVgpna2r4XeTTUL4cNndg6G8v6r6UQ2AHpne4",
"/ip4/3.70.125.137/tcp/15974/p2p/12D3KooWQc3dMZdqcmQrg2CY6sw5bTNTGQDviqr28jECCndDSbwt"
"/ip4/3.123.188.164/tcp/15974/p2p/12D3KooWPsy3DT5xVgpna2r4XeTTUL4cNndg6G8v6r6UQ2AHpne4"
],
"telemetryEndpoints": null,
"protocolId": "xxnet",
......@@ -14,7 +14,7 @@ codec = { package = "parity-scale-codec", version = "2.0.0" }
scale-info = { version = "1.0", default-features = false, features = ["derive"] }
node-primitives = { version = "0.2.0", path = "../primitives" }
runtime-common = { version = "0.2.0", path = "../runtime/common" }
xxnetwork-runtime = { version = "0.2.4", path = "../runtime/xxnetwork", optional=true }
xxnetwork-runtime = { version = "0.2.5", path = "../runtime/xxnetwork", optional=true }
canary-runtime = { version = "0.2.0", path = "../runtime/canary", optional=true }
sc-executor = { git = "https://github.com/xx-labs/substrate", branch = "xx-network" }
sp-core = { git = "https://github.com/xx-labs/substrate", branch = "xx-network" }
......
[package]
name = "xxnetwork-runtime"
version = "0.2.4"
version = "0.2.5"
authors = ["xxlabs <admin@xx.network>"]
edition = "2021"
build = "build.rs"
......
......@@ -102,7 +102,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
// and set impl_version to 0. If only runtime
// implementation changes and behavior does not, then leave spec_version as
// is and increment impl_version.
spec_version: 204,
spec_version: 205,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
......
......@@ -19,7 +19,7 @@ sp-keyring = { git = "https://github.com/xx-labs/substrate", branch = "xx-networ
node-executor = { version = "0.2.0", path = "../executor" }
node-primitives = { version = "0.2.0", path = "../primitives" }
runtime-common = { version = "0.2.0", path = "../runtime/common" }
xxnetwork-runtime = { version = "0.2.4", path = "../runtime/xxnetwork" }
xxnetwork-runtime = { version = "0.2.5", path = "../runtime/xxnetwork" }
sp-core = { git = "https://github.com/xx-labs/substrate", branch = "xx-network" }
sp-io = { git = "https://github.com/xx-labs/substrate", branch = "xx-network" }
sp-runtime = { git = "https://github.com/xx-labs/substrate", branch = "xx-network" }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment