Remove old service, 3rd try (#1776)
* Remove old service, 3rd try i.e. Revert "Revert "Remove Old Service, 2nd try (#1732)" (#1758)" This reverts commit c80f7b6b. Closes #1757. We now have some evidence that the polkadot validator was producing blocks after all; the reason the blocks_constructed metric was 0 was that as a new metric it hadn't yet been incorporated into that branch's codebase. See https://github.com/paritytech/polkadot/issues/1757#issuecomment-700977602 As this PR is based on a newer `master` branch than the previous one, that should hopefully no longer be an issue. * paras trait now has an Origin type * initial work running a two node local net * use the right incantations so the nodes produce blocks together * improve internal documentation Co-authored-by:Bastian Köcher <git@kchr.de>
... | @@ -14,7 +14,7 @@ readme = "README.md" | ... | @@ -14,7 +14,7 @@ readme = "README.md" |
[dependencies] | [dependencies] | ||
cli = { package = "polkadot-cli", path = "cli" } | cli = { package = "polkadot-cli", path = "cli" } | ||
futures = "0.3.4" | futures = "0.3.4" | ||
service = { package = "polkadot-service", path = "service" } | service = { package = "polkadot-service", path = "node/service" } | ||
parity-util-mem = { version = "*", default-features = false, features = ["jemalloc-global"] } | parity-util-mem = { version = "*", default-features = false, features = ["jemalloc-global"] } | ||
[dev-dependencies] | [dev-dependencies] | ||
... | @@ -36,9 +36,7 @@ members = [ | ... | @@ -36,9 +36,7 @@ members = [ |
"runtime/westend", | "runtime/westend", | ||
"runtime/test-runtime", | "runtime/test-runtime", | ||
"runtime/test-runtime/client", | "runtime/test-runtime/client", | ||
"service", | |||
"statement-table", | "statement-table", | ||
"service", | |||
"validation", | "validation", | ||
"xcm", | "xcm", | ||
"xcm/xcm-builder", | "xcm/xcm-builder", | ||
... | @@ -81,9 +79,6 @@ panic = "unwind" | ... | @@ -81,9 +79,6 @@ panic = "unwind" |
[features] | [features] | ||
runtime-benchmarks=["cli/runtime-benchmarks"] | runtime-benchmarks=["cli/runtime-benchmarks"] | ||
service-rewr= [ | |||
"cli/service-rewr", | |||
] | |||
# Configuration for building a .deb package - for use with `cargo-deb` | # Configuration for building a .deb package - for use with `cargo-deb` | ||
[package.metadata.deb] | [package.metadata.deb] | ||
... | ... |
node/service/res/.gitignore
0 → 100644
node/service/res/rococo.json
0 → 100644
This diff is collapsed.
This diff is collapsed.