subscan
Runtime Modules / Base
Spec Version:
Events
Name
Lookup
Attributes
UnexpectedError2a00["Option<DispatchError>"]
Constants
Name
Type
Value
MaxLenU3200080000
Error Types
Name
Docs
TooLongExceeded a generic length limit.The limit could be for any sort of lists of things, including a string.
CounterOverflowThe sequence counter for something overflowed.When this happens depends on e.g., the capacity of the identifier type.For example, we might have `pub struct PipId(u32);`, with `u32::MAX` capacity.In practice, these errors will never happen but no code path should result in a panic,so these corner cases need to be covered with an error variant.