pub const DKG_MSG_APP: u32 = _; // 4_294_967_294u32
Expand description
First available message tag for user applications.
Applications should use MessageTag::tag2(DKG_MSG_APP, app-specific-value)
to create
application-specific message tags. This ensures tags don’t conflict with protocol messages.
The value is set to u32::MAX - 1
to avoid potential conflicts with ABORT_MESSAGE_TAG
which is equal to MessageTag::tag2(u32::MAX, u32::MAX)
.