Files
pezkuwi-subxt/substrate/frame/examples/default-config
gupnik 294e99831d Fixes path issue in derive-impl (#1823)
Needs https://github.com/sam0x17/macro_magic/pull/13

The associated PR allows the export of tokens from macro_magic at the
specified path. This fixes the path issue in derive-impl. Now, we can
import the default config using the standard rust syntax:

```rust
use frame_system::config_preludes::TestDefaultConfig;

[derive_impl(TestDefaultConfig as frame_system::DefaultConfig)]
impl frame_system::DefaultConfig for Test {
   //....
}
```
2023-10-11 07:26:13 +02:00
..
2023-08-29 13:39:41 +02:00

Default Config Example Pallet

An example pallet demonstrating the ability to derive default testing configs via #[derive_impl] and #[pallet::config(with_default)].

Run cargo doc --package pallet-default-config-example --open to view this pallet's documentation.

License: MIT-0