We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eeb031b commit 5b22771Copy full SHA for 5b22771
modules/light-clients/06-solomachine/light_client_module.go
@@ -169,8 +169,9 @@ func (l LightClientModule) VerifyNonMembership(
169
170
// Status returns the status of the solo machine client.
171
// The client may be:
172
-// - Active: if frozen sequence is 0
173
-// - Frozen: otherwise solo machine is frozen
+// - Active: if `IsFrozen` is false.
+// - Frozen: if `IsFrozen` is true.
174
+// - Unknown: if the client state associated with the provided client identifier is not found.
175
//
176
// CONTRACT: clientID is validated in 02-client router, thus clientID is assumed here to have the format 06-solomachine-{n}.
177
func (l LightClientModule) Status(ctx sdk.Context, clientID string) exported.Status {
0 commit comments