mirror of
https://github.com/logos-messaging/logos-messaging-go.git
synced 2026-01-07 16:33:08 +00:00
23 lines
325 B
Go
23 lines
325 B
Go
//go:build !gowaku_rln
|
|
// +build !gowaku_rln
|
|
|
|
package node
|
|
|
|
import "context"
|
|
|
|
func (w *WakuNode) RLNRelay() RLNRelay {
|
|
return nil
|
|
}
|
|
|
|
func (w *WakuNode) setupRLNRelay() error {
|
|
return nil
|
|
}
|
|
|
|
func (w *WakuNode) startRlnRelay(ctx context.Context) error {
|
|
return nil
|
|
}
|
|
|
|
func (w *WakuNode) stopRlnRelay() error {
|
|
return nil
|
|
}
|