Generate the name of the group topic as a "grp" followed by random-looking unique string.
()
| 3982 | // Generate the name of the group topic as a "grp" followed by random-looking |
| 3983 | // unique string. |
| 3984 | func genTopicName() string { |
| 3985 | return "grp" + store.Store.GetUidString() |
| 3986 | } |
| 3987 | |
| 3988 | // Convert expanded (routable) topic name into name suitable for sending to the user. |
| 3989 | // For example p2pAbCDef123 -> usrAbCDef |
no test coverage detected
searching dependent graphs…