mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
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()
|
||
|
}
|