From a5c6ddfec2adba1fb94832600234ea4718a37e55 Mon Sep 17 00:00:00 2001 From: Daniel Shiposha Date: Wed, 15 Jun 2022 15:44:29 +0000 Subject: [PATCH] fix: remove rmrk benchmark from list --- --- a/runtime/common/src/runtime_apis.rs +++ b/runtime/common/src/runtime_apis.rs @@ -454,7 +454,6 @@ list_benchmark!(list, extra, pallet_refungible, Refungible); list_benchmark!(list, extra, pallet_nonfungible, Nonfungible); list_benchmark!(list, extra, pallet_unique_scheduler, Scheduler); - list_benchmark!(list, extra, pallet_proxy_rmrk_core, RmrkCore); // list_benchmark!(list, extra, pallet_evm_coder_substrate, EvmCoderSubstrate); let storage_info = AllPalletsReversedWithSystemFirst::storage_info(); @@ -499,7 +498,6 @@ add_benchmark!(params, batches, pallet_refungible, Refungible); add_benchmark!(params, batches, pallet_nonfungible, Nonfungible); add_benchmark!(params, batches, pallet_unique_scheduler, Scheduler); - add_benchmark!(params, batches, pallet_proxy_rmrk_core, RmrkCore); // add_benchmark!(params, batches, pallet_evm_coder_substrate, EvmCoderSubstrate); if batches.is_empty() { return Err("Benchmark not found for this pallet.".into()) } -- gitstuff