Skip to content

Commit

Permalink
dev-runtime: Use correct keystore pallet name
Browse files Browse the repository at this point in the history
  • Loading branch information
cdamian committed Jun 22, 2022
1 parent 4ef259b commit 343403b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/development/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1596,7 +1596,7 @@ impl_runtime_apis! {
add_benchmark!(params, batches, frame_system, SystemBench::<Runtime>);
add_benchmark!(params, batches, pallet_pools, Pools);
add_benchmark!(params, batches, pallet_loans, LoansPallet::<Runtime>);
add_benchmark!(params, batches, pallet_proxy_keystore, ProxyKeystore);
add_benchmark!(params, batches, pallet_keystore, ProxyKeystore);

if batches.is_empty() { return Err("Benchmark not found for this pallet.".into()) }
Ok(batches)
Expand Down Expand Up @@ -1625,7 +1625,7 @@ impl_runtime_apis! {
list_benchmark!(list, extra, frame_system, SystemBench::<Runtime>);
list_benchmark!(list, extra, pallet_pools, Pools);
list_benchmark!(list, extra, pallet_loans, LoansPallet::<Runtime>);
list_benchmark!(list, extra, pallet_proxy_keystore, ProxyKeystore);
list_benchmark!(list, extra, pallet_keystore, ProxyKeystore);

let storage_info = AllPalletsWithSystem::storage_info();

Expand Down

0 comments on commit 343403b

Please sign in to comment.