Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Address review comments
  • Loading branch information
vivekvpandya committed Nov 4, 2022
commit e1a3f3b39bcd16bcd7477cc66958720e151cf117
2 changes: 1 addition & 1 deletion node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ sp-finality-grandpa = { branch = "polkadot-v0.9.26", git = "https://github.com/p

# Utility
cfg-if = { version = "1.0.0" }
clap = { version = "3.1.18", features = ["derive"] }
clap = { version = "3.2.6", features = ["derive"] }
hex-literal = { version = "0.3.4" }
jsonrpsee = { version = "0.14.0", features = ["server"] }
log = { optional = true, version = "0.4.17" }
Expand Down
2 changes: 2 additions & 0 deletions runtime/battery-station/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ parachain = [
"log",
]
runtime-benchmarks = [
"cumulus-pallet-parachain-system?/runtime-benchmarks",
"cumulus-pallet-xcmp-queue?/runtime-benchmarks",
"frame-benchmarking/runtime-benchmarks",
"frame-support/runtime-benchmarks",
Expand Down Expand Up @@ -178,6 +179,7 @@ runtime-benchmarks = [
"pallet-xcm?/runtime-benchmarks",
"pallet-parachain-staking?/runtime-benchmarks",
"nimbus-primitives?/runtime-benchmarks",
"session-keys-primitives?/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
"xcm-builder?/runtime-benchmarks",
"zrml-authorized/runtime-benchmarks",
Expand Down
2 changes: 1 addition & 1 deletion runtime/battery-station/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
// along with Zeitgeist. If not, see <https://www.gnu.org/licenses/>.

#![cfg_attr(not(feature = "std"), no_std)]
#![recursion_limit = "256"]
#![recursion_limit = "512"]

extern crate alloc;

Expand Down
3 changes: 2 additions & 1 deletion runtime/common/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
// along with this program. If not, see <https://www.gnu.org/licenses/>.

#![cfg_attr(not(feature = "std"), no_std)]
#![recursion_limit = "256"]
#![recursion_limit = "512"]
#![allow(clippy::crate_in_macro_def)]

pub mod weights;
Expand Down Expand Up @@ -1224,6 +1224,7 @@ macro_rules! create_runtime_api {
add_benchmark!(params, batches, pallet_author_slot_filter, AuthorFilter);
add_benchmark!(params, batches, pallet_parachain_staking, ParachainStaking);
add_benchmark!(params, batches, pallet_crowdloan_rewards, Crowdloan);

} else {
add_benchmark!(params, batches, pallet_grandpa, Grandpa);
}
Expand Down
2 changes: 2 additions & 0 deletions runtime/zeitgeist/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ parachain = [
"log",
]
runtime-benchmarks = [
"cumulus-pallet-parachain-system?/runtime-benchmarks",
"cumulus-pallet-xcmp-queue?/runtime-benchmarks",
"frame-benchmarking/runtime-benchmarks",
"frame-support/runtime-benchmarks",
Expand Down Expand Up @@ -175,6 +176,7 @@ runtime-benchmarks = [
"pallet-vesting/runtime-benchmarks",
"pallet-xcm?/runtime-benchmarks",
"pallet-parachain-staking?/runtime-benchmarks",
"session-keys-primitives?/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
"xcm-builder?/runtime-benchmarks",
"zrml-authorized/runtime-benchmarks",
Expand Down
2 changes: 1 addition & 1 deletion runtime/zeitgeist/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
// along with Zeitgeist. If not, see <https://www.gnu.org/licenses/>.

#![cfg_attr(not(feature = "std"), no_std)]
#![recursion_limit = "256"]
#![recursion_limit = "512"]

extern crate alloc;

Expand Down