Skip to content

Commit

Permalink
Merge pull request #4 from Manta-Network/rename-runtime
Browse files Browse the repository at this point in the history
Rename runtime and binary name
  • Loading branch information
zhenfeizhang authored Apr 20, 2021
2 parents ddbcfb9 + dd7bd40 commit 1bc228c
Show file tree
Hide file tree
Showing 4 changed files with 117 additions and 117 deletions.
220 changes: 110 additions & 110 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions runtimes/manta-pc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "rococo-collator"
name = "manta-parachain"
version = "0.1.0"
authors = ["Parity Technologies <[email protected]>"]
build = "build.rs"
edition = "2018"

[[bin]]
name = "rococo-collator"
name = "manta-pc"
path = "src/main.rs"

[dependencies]
Expand All @@ -23,7 +23,7 @@ serde_json = "1.0.64"
hex-literal = "0.2.1"

# Parachain dependencies
parachain-runtime = { package = "cumulus-test-parachain-runtime", path = "runtime" }
parachain-runtime = { package = "manta-parachain-runtime", path = "runtime" }
rococo-parachain-primitives = { path = "primitives" }

# Substrate dependencies
Expand Down
2 changes: 1 addition & 1 deletion runtimes/manta-pc/runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = 'cumulus-test-parachain-runtime'
name = 'manta-parachain-runtime'
version = '0.1.0'
authors = ["Parity Technologies <[email protected]>"]
edition = '2018'
Expand Down
6 changes: 3 additions & 3 deletions runtimes/manta-pc/runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@ impl_opaque_keys! {

/// This runtime version.
pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("cumulus-test-parachain"),
impl_name: create_runtime_str!("cumulus-test-parachain"),
spec_name: create_runtime_str!("manta"),
impl_name: create_runtime_str!("manta"),
authoring_version: 1,
spec_version: 17,
spec_version: 1,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
Expand Down

0 comments on commit 1bc228c

Please sign in to comment.