git.delta.rocks / unique-network / refs/commits / a5f577f66749

difftreelog

fix broken benchmarking

Yaroslav Bolyukin2021-08-12parent: #326c9b4.patch.diff
in: master

4 files changed

modifiednode/cli/Cargo.tomldiffbeforeafterboth
318[features]318[features]
319default = []319default = []
320runtime-benchmarks = ['nft-runtime/runtime-benchmarks']320runtime-benchmarks = [
321 'nft-runtime/runtime-benchmarks',
322 'polkadot-service/runtime-benchmarks',
323]
321324
deletedpallets/nft-transaction-payment/src/benchmarking.rsdiffbeforeafterboth

no changes

modifiedpallets/nft-transaction-payment/src/lib.rsdiffbeforeafterboth
11#[cfg(feature = "std")]11#[cfg(feature = "std")]
12pub use serde::*;12pub use serde::*;
13
14#[cfg(feature = "runtime-benchmarks")]
15mod benchmarking;
1613
17use frame_support::{decl_module, decl_storage};14use frame_support::{decl_module, decl_storage};
18use sp_std::prelude::*;15use sp_std::prelude::*;
modifiedruntime/Cargo.tomldiffbeforeafterboth
28 'pallet-timestamp/runtime-benchmarks',28 'pallet-timestamp/runtime-benchmarks',
29 'pallet-nft/runtime-benchmarks',29 'pallet-nft/runtime-benchmarks',
30 'pallet-inflation/runtime-benchmarks',30 'pallet-inflation/runtime-benchmarks',
31 'pallet-xcm/runtime-benchmarks',
31 'sp-runtime/runtime-benchmarks',32 'sp-runtime/runtime-benchmarks',
33 'xcm-builder/runtime-benchmarks',
32]34]
33std = [35std = [
34 'codec/std',36 'codec/std',