Skip to content

Commit

Permalink
Disable llr seeding and remove snapsync from the configs (#17)
Browse files Browse the repository at this point in the history
* disable llr seeding
* remove snapsync from configs
  • Loading branch information
nibty authored Mar 6, 2024
1 parent 5bfec20 commit b510cac
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 18 deletions.
12 changes: 6 additions & 6 deletions gossip/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -683,20 +683,20 @@ func (h *handler) Start(maxPeers int) {
h.txFetcher.Start()
h.checkers.Heavycheck.Start()

h.epProcessor.Start()
h.epSeeder.Start()
//h.epProcessor.Start()
//h.epSeeder.Start()
//h.epLeecher.Start()

h.dagProcessor.Start()
h.dagSeeder.Start()
h.dagLeecher.Start()

h.bvProcessor.Start()
h.bvSeeder.Start()
//h.bvProcessor.Start()
//h.bvSeeder.Start()
//h.bvLeecher.Start()

h.brProcessor.Start()
h.brSeeder.Start()
//h.brProcessor.Start()
//h.brSeeder.Start()
//h.brLeecher.Start()
h.started.Done()
}
Expand Down
3 changes: 0 additions & 3 deletions system/etc/x1/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ Testnet = true
[Node.P2P]
ListenAddr = ":5050"

[Opera]
AllowSnapsync = true

# Share you node info with the xenblocks.io explorer
# (optional) comment out to disable
[XenBlocks]
Expand Down
3 changes: 0 additions & 3 deletions system/usr/share/x1/configs/testnet/api-node.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,6 @@ WSModules = [
[Node.P2P]
ListenAddr = ":5050"

[Opera]
AllowSnapsync = true

# Share you node info with the xenblocks.io explorer
# (optional) comment out to disable
[XenBlocks]
Expand Down
3 changes: 0 additions & 3 deletions system/usr/share/x1/configs/testnet/full-node.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ Testnet = true
[Node.P2P]
ListenAddr = ":5050"

[Opera]
AllowSnapsync = true

# Share you node info with the xenblocks.io explorer
# (optional) comment out to disable
[XenBlocks]
Expand Down
3 changes: 0 additions & 3 deletions system/usr/share/x1/configs/testnet/validator-node.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ Testnet = true
[Node.P2P]
ListenAddr = ":5050"

[Opera]
AllowSnapsync = true

[Emitter.Validator]

# update with your validator ID
Expand Down

0 comments on commit b510cac

Please sign in to comment.