Skip to content

Commit

Permalink
Merge pull request #140 from paritytech/1.13.3
Browse files Browse the repository at this point in the history
Remove custom tx Pool from node configuration
  • Loading branch information
bkchr authored Jun 28, 2024
2 parents a27c202 + cfb6bf5 commit 7d3498a
Show file tree
Hide file tree
Showing 6 changed files with 1 addition and 139 deletions.
16 changes: 0 additions & 16 deletions Cargo.lock

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

2 changes: 0 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ members = [
"primitives/xcm",
"runtime/mainnet",
"runtime/testnet",
"primitives/custom-pool",
]

resolver = "2"
Expand Down Expand Up @@ -162,4 +161,3 @@ xcm-executor = { package = "staging-xcm-executor", git = "https://github.com/par
# Primitives
account = { path = "./primitives/account", default-features = false }
fp-self-contained = { path = "./primitives/self-contained", default-features = false }
custom-pool = { path = "./primitives/custom-pool", default-features = false }
1 change: 0 additions & 1 deletion node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ hex-literal = { workspace = true }
testnet-runtime = { workspace = true }
mainnet-runtime = { workspace = true }
runtime-common = { workspace = true }
custom-pool = { workspace = true }

# Substrate
frame-benchmarking = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion node/src/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ where
let proposer_factory = sc_basic_authorship::ProposerFactory::with_proof_recording(
task_manager.spawn_handle(),
client.clone(),
Arc::new(custom_pool::CustomPool::new(transaction_pool)),
transaction_pool,
prometheus_registry,
telemetry.clone(),
);
Expand Down
19 changes: 0 additions & 19 deletions primitives/custom-pool/Cargo.toml

This file was deleted.

100 changes: 0 additions & 100 deletions primitives/custom-pool/src/lib.rs

This file was deleted.

0 comments on commit 7d3498a

Please sign in to comment.