mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
d32f0467ae
* feat: Add DiscV5 to Waku2 * fix: null verification for discV5
10 lines
173 B
Go
10 lines
173 B
Go
package protocol
|
|
|
|
func (m *Messenger) StartDiscV5() error {
|
|
return m.transport.StartDiscV5()
|
|
}
|
|
|
|
func (m *Messenger) StopDiscV5() error {
|
|
return m.transport.StopDiscV5()
|
|
}
|