From 25f3a4477940c2b949e830ffadf8c13f5b176f25 Mon Sep 17 00:00:00 2001 From: Hussam Date: Thu, 11 Jul 2024 10:50:08 -0500 Subject: [PATCH] Update subscriptions go.mod and gitignore --- .gitignore | 1 + config/config.yaml | 2 +- go.mod | 6 +++--- go.sum | 2 ++ 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index fc7a370..3f0537b 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ bin/* build/* logs/ .idea +.yaml diff --git a/config/config.yaml b/config/config.yaml index c758caf..c544db1 100644 --- a/config/config.yaml +++ b/config/config.yaml @@ -3,4 +3,4 @@ Location: [0,0] PrimeURL: "ws://127.0.0.1:8001" RegionURLs: ["ws://127.0.0.1:8002", "ws://127.0.0.1:8003", "ws://127.0.0.1:8004"] ZoneURLs: [["ws://127.0.0.1:8200", "ws://127.0.0.1:8201", "ws://127.0.0.1:8202"], ["ws://127.0.0.1:8220", "ws://127.0.0.1:8221", "ws://127.0.0.1:8222"], ["ws://127.0.0.1:8240", "ws://127.0.0.1:8241", "ws://127.0.0.1:8242"] ] -RunBlake3: True +RunBlake3: False diff --git a/go.mod b/go.mod index 3236232..38d2bd8 100644 --- a/go.mod +++ b/go.mod @@ -7,11 +7,11 @@ toolchain go1.21.5 require ( github.com/INFURA/go-ethlibs v0.0.0-20230222175239-ea21e114f25c github.com/TwiN/go-color v1.4.0 - github.com/dominant-strategies/go-quai v0.29.1-0.20240524201502-51123399727b + github.com/dominant-strategies/go-quai v0.30.0 github.com/dominant-strategies/go-quai-stratum v0.3.0 - github.com/gogo/protobuf v1.3.2 github.com/sirupsen/logrus v1.9.3 github.com/spf13/viper v1.17.0 + google.golang.org/protobuf v1.31.0 ) require ( @@ -33,6 +33,7 @@ require ( github.com/fsnotify/fsnotify v1.6.0 // indirect github.com/getsentry/sentry-go v0.18.0 // indirect github.com/go-ole/go-ole v1.2.6 // indirect + github.com/gogo/protobuf v1.3.2 // indirect github.com/golang/protobuf v1.5.3 // indirect github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb // indirect github.com/gorilla/websocket v1.5.0 // indirect @@ -95,7 +96,6 @@ require ( golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect golang.org/x/sys v0.18.0 // indirect golang.org/x/text v0.13.0 // indirect - google.golang.org/protobuf v1.31.0 // indirect gopkg.in/ini.v1 v1.67.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect lukechampine.com/blake3 v1.2.1 // indirect diff --git a/go.sum b/go.sum index 5b7a12a..4d1f94a 100644 --- a/go.sum +++ b/go.sum @@ -113,6 +113,8 @@ github.com/dgryski/go-farm v0.0.0-20190423205320-6a90982ecee2/go.mod h1:SqUrOPUn github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no= github.com/dominant-strategies/bn256 v0.0.0-20220930122411-fbf930a7493d h1:hkL13khTTS48QfWmjRFWpuzhOqu6S0cjpJOzPoBEDb4= github.com/dominant-strategies/bn256 v0.0.0-20220930122411-fbf930a7493d/go.mod h1:nvtPJPChairu4o4iX2XGrstOFpLaAgNYhrUCl5bSng4= +github.com/dominant-strategies/go-quai v0.30.0 h1:XQMz5UbFtv6epUr1EXKJRw1aL07NoS0Blkltf8bathc= +github.com/dominant-strategies/go-quai v0.30.0/go.mod h1:r47V9UUKRZ0VOXm0Kth3xO1aYSBFM/qAFOr+zR2zBAA= github.com/dominant-strategies/go-quai-stratum v0.3.0 h1:MPGujICiLY4/4JZ1gAWXvv09/NWgwstEGQagPIHbpP8= github.com/dominant-strategies/go-quai-stratum v0.3.0/go.mod h1:i9tQ+G1ON5FB/f0ZFBjdH0YnkynCoyijQ0pU7+ucGGo= github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk=