From 4d3895a167c3564d8620cf3f2c9cbb8c4b05bc63 Mon Sep 17 00:00:00 2001 From: Muharem Ismailov <ismailov.m.h@gmail.com> Date: Fri, 9 Dec 2022 21:27:40 +0100 Subject: [PATCH] Collectives runtime: add query call info api (#1976) --- .../collectives/collectives-polkadot/src/lib.rs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/cumulus/parachains/runtimes/collectives/collectives-polkadot/src/lib.rs b/cumulus/parachains/runtimes/collectives/collectives-polkadot/src/lib.rs index 8b591e9312d..a6c1b9d2883 100644 --- a/cumulus/parachains/runtimes/collectives/collectives-polkadot/src/lib.rs +++ b/cumulus/parachains/runtimes/collectives/collectives-polkadot/src/lib.rs @@ -686,6 +686,23 @@ impl_runtime_apis! { } } + impl pallet_transaction_payment_rpc_runtime_api::TransactionPaymentCallApi<Block, Balance, RuntimeCall> + for Runtime + { + fn query_call_info( + call: RuntimeCall, + len: u32, + ) -> pallet_transaction_payment::RuntimeDispatchInfo<Balance> { + TransactionPayment::query_call_info(call, len) + } + fn query_call_fee_details( + call: RuntimeCall, + len: u32, + ) -> pallet_transaction_payment::FeeDetails<Balance> { + TransactionPayment::query_call_fee_details(call, len) + } + } + impl cumulus_primitives_core::CollectCollationInfo<Block> for Runtime { fn collect_collation_info(header: &<Block as BlockT>::Header) -> cumulus_primitives_core::CollationInfo { ParachainSystem::collect_collation_info(header) -- GitLab