deploy: aa9a74c60bb809c04936843ad9ea1cda2c292fec

This commit is contained in:
jm-clius 2021-03-30 13:56:05 +00:00
parent 112da56662
commit e37a059f48
3 changed files with 16 additions and 13 deletions

View File

@ -1 +1 @@
1616752324
1617111199

View File

@ -2,7 +2,7 @@
# libtool - Provide generalized library-building support services.
# Generated automatically by config.status (libbacktrace) version-unused
# Libtool was configured on host fv-az193-526:
# Libtool was configured on host fv-az275-666:
# NOTE: Changes made to this file will be lost: look at ltmain.sh.
#
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,

View File

@ -581,7 +581,8 @@ when isMainModule:
# TODO Set swap peer, for now should be same as store peer
if conf.store:
# Store setup
if (conf.storenode != "") or (conf.store):
var store: WakuMessageStore
if not sqliteDatabase.isNil:
@ -594,20 +595,22 @@ when isMainModule:
mountStore(node, store)
if conf.filter:
if conf.storenode != "":
setStorePeer(node, conf.storenode)
# Filter setup
if (conf.filternode != "") or (conf.filter):
mountFilter(node)
if conf.relay:
if conf.filternode != "":
setFilterPeer(node, conf.filternode)
# Relay setup
if conf.relay: # True by default
mountRelay(node, conf.topics.split(" "), rlnRelayEnabled = conf.rlnrelay)
if conf.staticnodes.len > 0:
waitFor connectToNodes(node, conf.staticnodes)
if conf.storenode != "":
setStorePeer(node, conf.storenode)
if conf.filternode != "":
setFilterPeer(node, conf.filternode)
if conf.staticnodes.len > 0:
waitFor connectToNodes(node, conf.staticnodes)
if conf.rpc:
startRpc(node, conf.rpcAddress, Port(conf.rpcPort + conf.portsShift), conf)