Skip to content

Commit

Permalink
quaistats.go -> refactored to work with the new stats backend
Browse files Browse the repository at this point in the history
  • Loading branch information
robertlincecum authored and gameofpointers committed Aug 22, 2023
1 parent 394d1ff commit b4e4657
Show file tree
Hide file tree
Showing 3 changed files with 300 additions and 104 deletions.
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ require (
github.com/cockroachdb/pebble v0.0.0-20230701135918-609ae80aea41
github.com/davecgh/go-spew v1.1.1
github.com/deckarep/golang-set v1.8.0
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/docker/docker v1.6.2
github.com/dominant-strategies/bn256 v0.0.0-20220930122411-fbf930a7493d
github.com/edsrzf/mmap-go v1.1.0
Expand Down
12 changes: 6 additions & 6 deletions params/bootnodes.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ var ColosseumBootnodes = []string{
// GardenBootnodes are the enode URLs of the P2P bootstrap nodes running on the
// Garden test network.
var GardenBootnodes = []string{
"enode://f353567741755a4b35afb4641618b34c7e3c1666b49c9e519e8336c124ba8c2c556f00e9edcd87599994e9674ebdea3503a5ff1948a257c1540fe9f8c0fedf62@35.231.138.241", // us-east1-b
"enode://aa3d4daa8ea958c8a4fe3c56a7c5c0509754eec9b2e4eb45ac5fe9eb16bea442da0b50a0ac09e5fdf7711eb6b64df76dcd22e48d69f2f938d19fc60b9a8fd579@34.118.24.175", // europe-central2-a
"enode://13ed279b8013b61ef41466d4f07679fe17c407af4f6ae09b34042c72635eef314e9020f732a96a739abaa88f51108b76698f6b7335397be99418c371e5c3bcce@34.68.104.77", // us-central1-a
"enode://f353567741755a4b35afb4641618b34c7e3c1666b49c9e519e8336c124ba8c2c556f00e9edcd87599994e9674ebdea3503a5ff1948a257c1540fe9f8c0fedf62@35.231.138.241", // us-east1-b
"enode://aa3d4daa8ea958c8a4fe3c56a7c5c0509754eec9b2e4eb45ac5fe9eb16bea442da0b50a0ac09e5fdf7711eb6b64df76dcd22e48d69f2f938d19fc60b9a8fd579@34.118.24.175", // europe-central2-a
"enode://13ed279b8013b61ef41466d4f07679fe17c407af4f6ae09b34042c72635eef314e9020f732a96a739abaa88f51108b76698f6b7335397be99418c371e5c3bcce@34.68.104.77", // us-central1-a
}

// OrchardBootnodes are the enode URLs of the P2P bootstrap nodes running on the
Expand All @@ -45,9 +45,9 @@ var OrchardBootnodes = []string{
// LighthouseBootnodes are the enode URLs of the P2P bootstrap nodes running on the
// Lighthouse test network
var LighthouseBootnodes = []string{
"enode://ee89c22bff79d040fcf3dbaea3bcbe429e68b0ca9e32671027554e96aea3f132f6abed8cf5be514c50b76cf2cab96c7d9064a93f0bbd0903f26df4be01ce0e6a@35.196.124.28", // europe-southwest1-a
"enode://b39cf3080c8c9165bf0b50a7f6c8ff5a3568649b0c57ae786f630a054722fccfec7e3232594eb37a62a04e7c310a4d4e899ea42c0bd5a5043a248510715e2af9@35.187.55.110", // southamerica-east1-b
"enode://ce3daf05c462b36bc1a6261b8edb0cd72bf041c1f8fb59100d6a09dc3415d1f136cc8768b12129db73c48085c8e01d7a606be447d3f681f405ab427641599235@34.92.50.205", // asia-northeast3-a
"enode://ee89c22bff79d040fcf3dbaea3bcbe429e68b0ca9e32671027554e96aea3f132f6abed8cf5be514c50b76cf2cab96c7d9064a93f0bbd0903f26df4be01ce0e6a@34.148.120.168", // europe-southwest1-a
"enode://b39cf3080c8c9165bf0b50a7f6c8ff5a3568649b0c57ae786f630a054722fccfec7e3232594eb37a62a04e7c310a4d4e899ea42c0bd5a5043a248510715e2af9@34.209.106.192", // southamerica-east1-b
"enode://ce3daf05c462b36bc1a6261b8edb0cd72bf041c1f8fb59100d6a09dc3415d1f136cc8768b12129db73c48085c8e01d7a606be447d3f681f405ab427641599235@34.116.214.14", // asia-northeast3-a
}

var V5Bootnodes = []string{}
Expand Down
Loading

0 comments on commit b4e4657

Please sign in to comment.