mirror of
https://github.com/status-im/go-waku.git
synced 2025-01-13 15:24:46 +00:00
19 lines
267 B
Go
19 lines
267 B
Go
//go:build !gowaku_rln
|
|
// +build !gowaku_rln
|
|
|
|
package node
|
|
|
|
import "context"
|
|
|
|
func (w *WakuNode) RLNRelay() RLNRelay {
|
|
return nil
|
|
}
|
|
|
|
func (w *WakuNode) mountRlnRelay(ctx context.Context) error {
|
|
return nil
|
|
}
|
|
|
|
func (w *WakuNode) stopRlnRelay() error {
|
|
return nil
|
|
}
|