From ea81a0f379af5a8c1a3c8faf98cf3d148d73fc72 Mon Sep 17 00:00:00 2001 From: gui Date: Tue, 6 Aug 2024 08:26:26 +0900 Subject: [PATCH] doc --- docs/sdk/src/guides/enable_pov_reclaim.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/sdk/src/guides/enable_pov_reclaim.rs b/docs/sdk/src/guides/enable_pov_reclaim.rs index 2d2c0652cd41..a30bcd8f15bb 100644 --- a/docs/sdk/src/guides/enable_pov_reclaim.rs +++ b/docs/sdk/src/guides/enable_pov_reclaim.rs @@ -64,6 +64,8 @@ //! To enable the reclaiming, //! set [`StorageWeightReclaim`](cumulus_pallet_weight_reclaim_tx::StorageWeightReclaim) //! as a warpper of that list. +//! It is necessary that this extension wraps all the other transaction extensions in order to catch +//! the whole PoV size of the transactions. //! The extension will check the size of the storage proof before and after an extrinsic execution. //! It reclaims the difference between the calculated size and the benchmarked size. #![doc = docify::embed!("../../templates/parachain/runtime/src/lib.rs", template_signed_extra)]