remove --subscribe-all{att,sync}nets (#3359)
This commit is contained in:
parent
02349b4181
commit
e0fb5d95a6
|
@ -160,19 +160,9 @@ type
|
|||
desc: "Node agent string which is used as identifier in network"
|
||||
name: "agent-string" }: string
|
||||
|
||||
subscribeAllAttnets* {.
|
||||
defaultValue: false,
|
||||
desc: "Subscribe to all attestation subnet topics when gossiping"
|
||||
name: "subscribe-all-attnets" }: bool
|
||||
|
||||
subscribeAllSyncnets* {.
|
||||
defaultValue: false,
|
||||
desc: "Subscribe to all sync subnet topics when gossiping"
|
||||
name: "subscribe-all-syncnets" }: bool
|
||||
|
||||
subscribeAllSubnets* {.
|
||||
defaultValue: false,
|
||||
desc: "Subscribe to all subnet topics when gossiping; implies subscribe-all-attnets and subscribe-all-syncnets"
|
||||
desc: "Subscribe to all subnet topics when gossiping"
|
||||
name: "subscribe-all-subnets" }: bool
|
||||
|
||||
slashingDbKind* {.
|
||||
|
@ -262,7 +252,8 @@ type
|
|||
name: "graffiti" }: Option[GraffitiBytes]
|
||||
|
||||
verifyFinalization* {.
|
||||
desc: "Specify whether to verify finalization occurs on schedule, for testing"
|
||||
hidden
|
||||
desc: "Specify whether to verify finalization occurs on schedule (debug only)"
|
||||
defaultValue: false
|
||||
name: "verify-finalization" }: bool
|
||||
|
||||
|
|
|
@ -543,8 +543,7 @@ proc init*(T: type BeaconNode,
|
|||
requestManager: RequestManager.init(network, blockVerifier),
|
||||
syncManager: syncManager,
|
||||
backfiller: backfiller,
|
||||
actionTracker: ActionTracker.init(
|
||||
rng, config.subscribeAllAttnets or config.subscribeAllSubnets),
|
||||
actionTracker: ActionTracker.init(rng, config.subscribeAllSubnets),
|
||||
processor: processor,
|
||||
blockProcessor: blockProcessor,
|
||||
consensusManager: consensusManager,
|
||||
|
@ -725,7 +724,7 @@ proc removePhase0MessageHandlers(node: BeaconNode, forkDigest: ForkDigest) =
|
|||
|
||||
func hasSyncPubKey(node: BeaconNode, epoch: Epoch): auto =
|
||||
# Only used to determine which gossip topics to which to subscribe
|
||||
if node.config.subscribeAllSubnets or node.config.subscribeAllSyncnets:
|
||||
if node.config.subscribeAllSubnets:
|
||||
(func(pubkey: ValidatorPubKey): bool {.closure.} = true)
|
||||
else:
|
||||
(func(pubkey: ValidatorPubKey): bool =
|
||||
|
|
Loading…
Reference in New Issue