Skip to content

Commit

Permalink
Merge pull request #81 from SiaFoundation/nate/enable-anagami
Browse files Browse the repository at this point in the history
Enable anagami
  • Loading branch information
n8maninger authored Sep 2, 2024
2 parents 2efd3b4 + a94e537 commit f74c218
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion cmd/explored/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -270,8 +270,11 @@ func main() {
case "zen":
network, genesisBlock = chain.TestnetZen()
cfg.Syncer.Peers = append(cfg.Syncer.Peers, syncer.ZenBootstrapPeers...)
case "anagami":
network, genesisBlock = chain.TestnetAnagami()
cfg.Syncer.Peers = append(cfg.Syncer.Peers, syncer.AnagamiBootstrapPeers...)
default:
log.Fatal("network must be 'mainnet' or 'zen'", zap.String("network", cfg.Consensus.Network))
log.Fatal("network must be 'mainnet', 'zen', or 'anagami'", zap.String("network", cfg.Consensus.Network))
}

bdb, err := coreutils.OpenBoltChainDB(filepath.Join(cfg.Directory, "consensus.db"))
Expand Down

0 comments on commit f74c218

Please sign in to comment.