From ca8159baadab266827efdde43b52c0c2570fd6da Mon Sep 17 00:00:00 2001 From: cdamian <17934949+cdamian@users.noreply.github.com> Date: Wed, 22 Jun 2022 07:49:59 +0200 Subject: [PATCH] dev-runtime: Use correct keystore pallet name --- runtime/development/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/development/src/lib.rs b/runtime/development/src/lib.rs index c8a37dac48..f2cbe88bcb 100644 --- a/runtime/development/src/lib.rs +++ b/runtime/development/src/lib.rs @@ -1596,7 +1596,7 @@ impl_runtime_apis! { add_benchmark!(params, batches, frame_system, SystemBench::); add_benchmark!(params, batches, pallet_pools, Pools); add_benchmark!(params, batches, pallet_loans, LoansPallet::); - add_benchmark!(params, batches, pallet_proxy_keystore, ProxyKeystore); + add_benchmark!(params, batches, pallet_keystore, Keystore); if batches.is_empty() { return Err("Benchmark not found for this pallet.".into()) } Ok(batches) @@ -1625,7 +1625,7 @@ impl_runtime_apis! { list_benchmark!(list, extra, frame_system, SystemBench::); list_benchmark!(list, extra, pallet_pools, Pools); list_benchmark!(list, extra, pallet_loans, LoansPallet::); - list_benchmark!(list, extra, pallet_proxy_keystore, ProxyKeystore); + list_benchmark!(list, extra, pallet_keystore, Keystore); let storage_info = AllPalletsWithSystem::storage_info();