NotConfigured
Error v154 → current 20.2The safe-mode functionality you're trying to use is disabled.
Encountered by: validatorsdevelopers
Why This Error Exists
Safe-mode features can be individually disabled via configuration. A None value for deposit amounts or delay disables the corresponding permissionless operation.
Deep Dive
The runtime configures which safe-mode operations are permissionless (anyone can do with deposit) vs privileged (governance only). NotConfigured means you're trying a permissionless operation that's been disabled.
Debugging Example
You call enter() but get NotConfigured. Query EnterDepositAmount constant - it's None. Permissionless entry is disabled. Only ForceEnterOrigin can activate safe-mode.
Prevention Tips
- Check constant configuration before attempting operations
From Chain Metadata
This functionality of the pallet is disabled by the configuration.
What This Means
The safe-mode functionality you're trying to use is disabled.
Common Causes
- EnterDepositAmount is None (permissionless entry disabled)
- ExtendDepositAmount is None (permissionless extension disabled)
- ReleaseDelay is None (permissionless release disabled)
How to Fix
- Check constant configuration for the operation you're attempting
- Use force_ variants if you have governance privileges
- Contact governance to enable the functionality if needed
Runtime Info
- Pallet Index
- 20
- Error Index
- 2
- Error Code
- 20.2
- Runtime Version
- v393