Skip to content

Commit 7d3498a

Browse files
authored
Merge pull request #140 from paritytech/1.13.3
Remove custom tx Pool from node configuration
2 parents a27c202 + cfb6bf5 commit 7d3498a

File tree

6 files changed

+1
-139
lines changed

6 files changed

+1
-139
lines changed

Cargo.lock

-16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ members = [
77
"primitives/xcm",
88
"runtime/mainnet",
99
"runtime/testnet",
10-
"primitives/custom-pool",
1110
]
1211

1312
resolver = "2"
@@ -162,4 +161,3 @@ xcm-executor = { package = "staging-xcm-executor", git = "https://github.com/par
162161
# Primitives
163162
account = { path = "./primitives/account", default-features = false }
164163
fp-self-contained = { path = "./primitives/self-contained", default-features = false }
165-
custom-pool = { path = "./primitives/custom-pool", default-features = false }

node/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ hex-literal = { workspace = true }
2424
testnet-runtime = { workspace = true }
2525
mainnet-runtime = { workspace = true }
2626
runtime-common = { workspace = true }
27-
custom-pool = { workspace = true }
2827

2928
# Substrate
3029
frame-benchmarking = { workspace = true }

node/src/service.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ where
517517
let proposer_factory = sc_basic_authorship::ProposerFactory::with_proof_recording(
518518
task_manager.spawn_handle(),
519519
client.clone(),
520-
Arc::new(custom_pool::CustomPool::new(transaction_pool)),
520+
transaction_pool,
521521
prometheus_registry,
522522
telemetry.clone(),
523523
);

primitives/custom-pool/Cargo.toml

-19
This file was deleted.

primitives/custom-pool/src/lib.rs

-100
This file was deleted.

0 commit comments

Comments
 (0)