Skip to content

Commit

Permalink
Remove txpool from non-tracing build (#993)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dinonard authored Aug 3, 2023
1 parent 5b65648 commit 79d4568
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 14 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion bin/collator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "astar-collator"
version = "5.16.0"
version = "5.16.1"
description = "Astar collator implementation in Rust."
build = "build.rs"
default-run = "astar-collator"
Expand Down
5 changes: 1 addition & 4 deletions bin/collator/src/rpc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@
use fc_rpc::{
Eth, EthApiServer, EthBlockDataCacheTask, EthFilter, EthFilterApiServer, EthPubSub,
EthPubSubApiServer, Net, NetApiServer, OverrideHandle, TxPool, TxPoolApiServer, Web3,
Web3ApiServer,
EthPubSubApiServer, Net, NetApiServer, OverrideHandle, TxPool, Web3, Web3ApiServer,
};
use fc_rpc_core::types::{FeeHistoryCache, FilterPool};
use jsonrpsee::RpcModule;
Expand Down Expand Up @@ -332,7 +331,5 @@ where
.into_rpc(),
)?;

io.merge(tx_pool.into_rpc())?;

Ok(io)
}
2 changes: 1 addition & 1 deletion runtime/astar/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "astar-runtime"
version = "5.16.0"
version = "5.16.1"
build = "build.rs"
authors.workspace = true
edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion runtime/local/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "local-runtime"
version = "5.16.0"
version = "5.16.1"
build = "build.rs"
authors.workspace = true
edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion runtime/shibuya/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shibuya-runtime"
version = "5.16.0"
version = "5.16.1"
build = "build.rs"
authors.workspace = true
edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion runtime/shiden/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shiden-runtime"
version = "5.16.0"
version = "5.16.1"
build = "build.rs"
authors.workspace = true
edition.workspace = true
Expand Down

0 comments on commit 79d4568

Please sign in to comment.