set reputationEnabled to false by default in config

This commit is contained in:
Sergei Tikhomirov 2025-03-06 11:02:03 +01:00
parent d8ba7b7eef
commit 350929c6eb
2 changed files with 1 additions and 3 deletions

View File

@ -75,7 +75,6 @@ suite "Waku Lightpush Client":
server = await newTestWakuLightpushNode(serverSwitch, handler)
serverFailsLightpush =
await newTestWakuLightpushNode(serverSwitchFailsLightpush, handlerFailsLightpush)
## FIXME: how to pass reputationEnabled from config to here? should we?
client = newTestWakuLightpushClient(clientSwitch, reputationEnabled = true)
await allFutures(

View File

@ -497,10 +497,9 @@ hence would have reachability issues.""",
.}: string
## Reputation config
## FIXME: should be set to false by default
reputationEnabled* {.
desc: "Enable client-side reputation for light protocols: true|false",
defaultValue: true,
defaultValue: false,
name: "reputation"
.}: bool