You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Every storage item that is defined in a pallet will have a corresponding metadata entry.
267
-
Metadata entries like these are generated from [macros](../macros) using associated types from the [`frame-system`](/rustdocs/latest/frame_system/pallet/trait.Config.html) crate. For example:
267
+
Metadata entries like these are generated from [macros](/v3/runtime/macros) using associated types from the [`frame-system`](/rustdocs/latest/frame_system/pallet/trait.Config.html) crate. For example:
268
268
269
269
```rust
270
270
#[pallet::config]
@@ -450,11 +450,11 @@ the [`InvalidSpecName` error](/rustdocs/latest/frame_system/pallet/enum.Error.ht
Copy file name to clipboardExpand all lines: v3/docs/03-runtime/h-weights-and-fees/index.mdx
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -59,7 +59,7 @@ You can also use the Transaction Payment pallet to:
59
59
60
60
* Manage the withdrawal, refund, and deposit of transaction fees using `Config::OnChargeTransaction`.
61
61
62
-
You can learn more about these configuration traits in the [Transaction Payment](https://substrate.dev/rustdocs/latest/pallet_transaction_payment/index.html) documentation.
62
+
You can learn more about these configuration traits in the [Transaction Payment](/rustdocs/latest/pallet_transaction_payment/index.html) documentation.
63
63
64
64
You should note that transaction fees are withdrawn before the transaction is executed.
65
65
After the transaction is executed, the transaction weight can be adjusted to reflect the actual resources the transaction used.
@@ -102,10 +102,10 @@ However, this scenario would be a rare occurrence because the transaction queue
102
102
103
103
The inclusion fee formula always results in the same fee for the same input.
is defined—the final fee can include some degree of variability.
107
107
108
-
To account for this variability, the Transaction Payment pallet provides the [`FeeMultiplierUpdate`](https://substrate.dev/rustdocs/latest/pallet_transaction_payment/pallet/trait.Config.html#associatedtype.FeeMultiplierUpdate) configurable parameter.
108
+
To account for this variability, the Transaction Payment pallet provides the [`FeeMultiplierUpdate`](/rustdocs/latest/pallet_transaction_payment/pallet/trait.Config.html#associatedtype.FeeMultiplierUpdate) configurable parameter.
109
109
110
110
The default update function is inspired by the Polkadot network and implements a targeted adjustment in which a target saturation level of block weight is defined.
111
111
If the previous block is more saturated, then the fees are slightly increased.
0 commit comments