-
Notifications
You must be signed in to change notification settings - Fork 649
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2191 from bitshares/update-seeds
Update mainnet seed nodes
- Loading branch information
Showing
8 changed files
with
73 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
// https://bitsharestalk.org/index.php/topic,23715.0.html | ||
"seed01.liondani.com:1776", // liondani (GERMANY) | ||
"45.35.12.22:1776", // sahkan (USA) | ||
"bts.lafona.net:1776", // lafona (France) | ||
"bts-seed1.abit-more.com:62015", // abit (China) | ||
"node.blckchnd.com:4243", // blckchnd (Germany) | ||
"seed.roelandp.nl:1776", // roelandp (Canada) | ||
"seed.bts.bangzi.info:55501", // Bangzi (Germany) | ||
"seed01.liondani.com:1776", // liondani (Germany) | ||
"bts.lafona.net:1776", // lafona (France) | ||
"bts-seed1.abit-more.com:62015", // abit (China) | ||
"seed.blckchnd.com:4243", // blckchnd (Germany) | ||
"seed.roelandp.nl:1776", // roelandp (Canada) | ||
"seed.bts.bangzi.info:55501", // Bangzi (Germany) | ||
"seed1.xbts.io:1776", // xbts.io (Germany) | ||
"seed2.xbts.io:1776", // xbts.io (Germany) | ||
"seed.bitshares.org:666", // bitshares.org (France) | ||
"seeds.btsnodes.com:1776", // Community |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/bin/bash | ||
set -e | ||
|
||
programs/build_helpers/buildstep -s 3500 | ||
ccache -s | ||
programs/build_helpers/buildstep Prepare 1 "sed -i '/tests/d' libraries/fc/CMakeLists.txt" | ||
programs/build_helpers/buildstep cmake 5 "cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_FLAGS=--coverage -DCMAKE_CXX_FLAGS=--coverage -DBoost_USE_STATIC_LIBS=OFF -DCMAKE_CXX_OUTPUT_EXTENSION_REPLACE=ON ." | ||
programs/build_helpers/buildstep make.programs 1800 "programs/build_helpers/make_with_sonar bw-output -j 2 witness_node cli_wallet js_operation_serializer get_dev_key network_mapper" | ||
set -o pipefail | ||
programs/build_helpers/buildstep prepare.sonar 20 "find libraries/[acdenptuw]*/CMakeFiles/*.dir programs/[cdgjsw]*/CMakeFiles/*.dir -type d -print | while read d; do gcov -o \"\$d\" \"\${d/CMakeFiles*.dir//}\"/*.cpp; done >/dev/null; programs/build_helpers/set_sonar_branch sonar-project.properties" | ||
du -hs sonar_cache | ||
# The first pass, skip some files. This will remove the skipped files from the cache, but is an acceptable trade-off | ||
programs/build_helpers/buildstep prepare.sonar.part1 1 "cp sonar-project.properties sonar-project.properties.bak; sed -i '/sonar\.exclusions=/d;s/#sonar\.exclusions.part1/sonar.exclusions/' sonar-project.properties" | ||
programs/build_helpers/buildstep run.sonar.part1 1500 "which sonar-scanner && sonar-scanner" | ||
programs/build_helpers/buildstep prepare.sonar.full 1 "cp sonar-project.properties.bak sonar-project.properties" | ||
du -hs sonar_cache | ||
# The second pass, skip fewer files | ||
programs/build_helpers/buildstep prepare.sonar.part2 1 "cp sonar-project.properties sonar-project.properties.bak; sed -i '/sonar\.exclusions=/d;s/#sonar\.exclusions.part2/sonar.exclusions/' sonar-project.properties" | ||
programs/build_helpers/buildstep run.sonar.part2 1500 "which sonar-scanner && sonar-scanner" | ||
programs/build_helpers/buildstep prepare.sonar.full2 1 "cp sonar-project.properties.bak sonar-project.properties" | ||
du -hs sonar_cache | ||
programs/build_helpers/buildstep end 0 | ||
ccache -s | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#!/bin/bash | ||
set -e | ||
|
||
programs/build_helpers/buildstep -s 3500 | ||
ccache -s | ||
programs/build_helpers/buildstep Prepare 1 "sed -i '/tests/d' libraries/fc/CMakeLists.txt" | ||
programs/build_helpers/buildstep cmake 5 "cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_FLAGS=--coverage -DCMAKE_CXX_FLAGS=--coverage -DBoost_USE_STATIC_LIBS=OFF -DCMAKE_CXX_OUTPUT_EXTENSION_REPLACE=ON ." | ||
programs/build_helpers/buildstep make.programs 1800 "programs/build_helpers/make_with_sonar bw-output -j 2 witness_node cli_wallet js_operation_serializer get_dev_key network_mapper" | ||
set -o pipefail | ||
programs/build_helpers/buildstep prepare.sonar 20 "find libraries/[acdenptuw]*/CMakeFiles/*.dir programs/[cdgjsw]*/CMakeFiles/*.dir -type d -print | while read d; do gcov -o \"\$d\" \"\${d/CMakeFiles*.dir//}\"/*.cpp; done >/dev/null; programs/build_helpers/set_sonar_branch sonar-project.properties" | ||
du -hs sonar_cache | ||
# The first pass is skipped here | ||
# The second pass, skip fewer files than the first pass. This will remove the skipped files from the cache, but is an acceptable trade-off | ||
programs/build_helpers/buildstep prepare.sonar.part2 1 "cp sonar-project.properties sonar-project.properties.bak; sed -i '/sonar\.exclusions=/d;s/#sonar\.exclusions.part2/sonar.exclusions/' sonar-project.properties" | ||
programs/build_helpers/buildstep run.sonar.part2 1500 "which sonar-scanner && sonar-scanner" | ||
programs/build_helpers/buildstep prepare.sonar.full 1 "cp sonar-project.properties.bak sonar-project.properties" | ||
du -hs sonar_cache | ||
# The second pass, scan all files | ||
programs/build_helpers/buildstep run.sonar.full 1500 "which sonar-scanner && sonar-scanner" | ||
du -hs sonar_cache | ||
programs/build_helpers/buildstep end 0 | ||
ccache -s | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters