Skip to content
This repository was archived by the owner on Nov 24, 2025. It is now read-only.

Commit 11b66d5

Browse files
authored
remove bootstrap nodes (#2282)
* remove boostrap nodes * add temporary upper bound for http-semantics
1 parent 061ec78 commit 11b66d5

File tree

2 files changed

+27
-22
lines changed

2 files changed

+27
-22
lines changed

cabal.project

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,3 +221,6 @@ allow-newer: lrucaching:base-compat
221221
--
222222
-- Please add a comment for each entry that outlines why it is needed and when
223223
-- it can be removed.
224+
225+
-- 0.3.1 breaks builds of http2-5.3.10
226+
constraints: http-semantics <0.3.1

src/P2P/BootstrapNodes.hs

Lines changed: 24 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -29,20 +29,21 @@ import Chainweb.HostAddress
2929
-- Please make a pull request, if you like to see your node being included here.
3030
--
3131
mainnetBootstrapHosts :: [HostAddress]
32-
mainnetBootstrapHosts = map unsafeHostAddressFromText
33-
[ "us-e1.chainweb.com:443"
34-
, "us-e2.chainweb.com:443"
35-
, "us-e3.chainweb.com:443"
36-
, "us-w1.chainweb.com:443"
37-
, "us-w2.chainweb.com:443"
38-
, "us-w3.chainweb.com:443"
39-
, "fr1.chainweb.com:443"
40-
, "fr2.chainweb.com:443"
41-
, "fr3.chainweb.com:443"
42-
, "jp1.chainweb.com:443"
43-
, "jp2.chainweb.com:443"
44-
, "jp3.chainweb.com:443"
45-
]
32+
mainnetBootstrapHosts = []
33+
-- mainnetBootstrapHosts = map unsafeHostAddressFromText
34+
-- [ "us-e1.chainweb.com:443"
35+
-- , "us-e2.chainweb.com:443"
36+
-- , "us-e3.chainweb.com:443"
37+
-- , "us-w1.chainweb.com:443"
38+
-- , "us-w2.chainweb.com:443"
39+
-- , "us-w3.chainweb.com:443"
40+
-- , "fr1.chainweb.com:443"
41+
-- , "fr2.chainweb.com:443"
42+
-- , "fr3.chainweb.com:443"
43+
-- , "jp1.chainweb.com:443"
44+
-- , "jp2.chainweb.com:443"
45+
-- , "jp3.chainweb.com:443"
46+
-- ]
4647

4748
-- -------------------------------------------------------------------------- --
4849
-- | Testnet04 bootstrap nodes.
@@ -54,11 +55,12 @@ mainnetBootstrapHosts = map unsafeHostAddressFromText
5455
-- Please make a pull request, if you like to see your node being included here.
5556
--
5657
testnet04BootstrapHosts :: [HostAddress]
57-
testnet04BootstrapHosts = map unsafeHostAddressFromText
58-
[ "us1.testnet.chainweb.com:443"
59-
, "us2.testnet.chainweb.com:443"
60-
, "eu1.testnet.chainweb.com:443"
61-
, "eu2.testnet.chainweb.com:443"
62-
, "ap1.testnet.chainweb.com:443"
63-
, "ap2.testnet.chainweb.com:443"
64-
]
58+
testnet04BootstrapHosts = []
59+
-- testnet04BootstrapHosts = map unsafeHostAddressFromText
60+
-- [ "us1.testnet.chainweb.com:443"
61+
-- , "us2.testnet.chainweb.com:443"
62+
-- , "eu1.testnet.chainweb.com:443"
63+
-- , "eu2.testnet.chainweb.com:443"
64+
-- , "ap1.testnet.chainweb.com:443"
65+
-- , "ap2.testnet.chainweb.com:443"
66+
-- ]

0 commit comments

Comments
 (0)