Update bitcoin cash seed nodes from bitcoin-abc

Current seed nodes are outdated which results in the IBD for Bitcoin Cash
(mainnet & testnet) never starting. The newly introduced nodes fix this
problem.
This commit is contained in:
Kostis Karantias 2018-07-31 20:44:16 +00:00
parent 424642fbee
commit 411f741a7a
1 changed files with 7 additions and 1 deletions

View File

@ -30,14 +30,20 @@ pub fn testnet_seednodes() -> Vec<&'static str> {
pub fn bitcoin_cash_seednodes() -> Vec<&'static str> {
vec![
"cash-seed.bitcoin.thomaszander.se:8333",
"seed.bitcoinabc.org:8333",
"seed-abc.bitcoinforks.org:8333",
"seed.bitprim.org:8333",
"seed.deadalnix.me:8333",
"seeder.criptolayer.net:8333"
]
}
pub fn bitcoin_cash_testnet_seednodes() -> Vec<&'static str> {
vec![
"testnet-seed.bitcoinabc.org:18333",
"testnet-seed-abc.bitcoinforks.org:18333",
"testnet-seed.bitprim.org:18333",
"testnet-seed.deadalnix.me:18333",
"testnet-seeder.criptolayer.net:18333"
]
}