diff --git a/mobile/status.go b/mobile/status.go index 5eac0ad3ec6..1dea74eea67 100644 --- a/mobile/status.go +++ b/mobile/status.go @@ -1327,3 +1327,11 @@ func InitLogging(logSettingsJSON string) string { return makeJSONResponse(err) } + +func getRandomMnemonic() string { + resp, err := statusBackend.AccountManager().GetRandomMnemonic() + if err != nil { + return makeJSONResponse(err) + } + return resp +}