mirror of https://github.com/status-im/go-waku.git
18 lines
320 B
Go
18 lines
320 B
Go
//go:build !gowaku_rln
|
|
// +build !gowaku_rln
|
|
|
|
package waku
|
|
|
|
import (
|
|
"github.com/status-im/go-waku/waku/v2/node"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
func checkForRLN(logger *zap.Logger, options Options, nodeOpts *[]node.WakuNodeOption) {
|
|
// Do nothing
|
|
}
|
|
|
|
func onStartRLN(wakuNode *node.WakuNode, options Options) {
|
|
// Do nothing
|
|
}
|