Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: remove standalone folder #323

Merged
merged 2 commits into from
Nov 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ members = [
"client/rpc/*",
"client/rpc-core/*",
"client/voter",
"standalone/node",
"standalone/runtime",
"standalone/runtime/evm_tracer",
"node",
"runtime",
"runtime/evm_tracer",
"pallets/*",
"pallets/roles",
"pallets/roles",
"pallets/jobs/rpc",
"pallets/jobs/rpc/runtime-api",
"precompiles/utils",
Expand Down Expand Up @@ -80,7 +80,7 @@ dkg-primitives = { git = "https://github.com/webb-tools/dkg-substrate.git", tag
webb-relayer-gadget = { git = "https://github.com/webb-tools/dkg-substrate.git", tag = "v0.4.7" }
webb-relayer-gadget-cli = { git = "https://github.com/webb-tools/dkg-substrate.git", tag = "v0.4.7" }

tangle-runtime = { package = "tangle-standalone-runtime", path = "standalone/runtime" }
tangle-runtime = { package = "tangle-standalone-runtime", path = "runtime" }

# Tangle Dependencies
pallet-ecdsa-claims = { path = "pallets/claims", default-features = false }
Expand Down Expand Up @@ -307,7 +307,7 @@ rpc-core-types = { path = "client/rpc-core/types" }
rpc-debug = { path = "client/rpc/debug" }
rpc-trace = { path = "client/rpc/trace" }
rpc-txpool = { path = "client/rpc/txpool" }
evm-tracer = { path = "standalone/runtime/evm_tracer", default-features = false }
evm-tracer = { path = "runtime/evm_tracer", default-features = false }

[profile.release]
panic = "unwind"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion standalone/node/src/command.rs → node/src/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ impl SubstrateCli for Cli {
// generates the spec for mainnet
"mainnet" => Box::new(chain_spec::tangle_mainnet_config(4006)?),
"tangle-testnet" => Box::new(chain_spec::ChainSpec::from_json_bytes(
&include_bytes!("../../../chainspecs/testnet/tangle-standalone.json")[..],
&include_bytes!("../../chainspecs/testnet/tangle-standalone.json")[..],
)?),
path =>
Box::new(chain_spec::ChainSpec::from_json_file(std::path::PathBuf::from(path))?),
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading