diff --git a/README.md b/README.md index efa90d6..2708f06 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,9 @@ By default, this will start a sync from genesis without bootstrapping from a sna ## Coming Soon - Syncing from a snapshot - State Sync (if possible) +- Dockerize/k8 Cloud deployment +- Make Cloud deployment resilient to binary crashes +- Security improvements ## FAQ / Common Issues - Downloading snapshot is too slow diff --git a/build-dependencies.sh b/build-dependencies.sh index b10cc9c..815a9a0 100755 --- a/build-dependencies.sh +++ b/build-dependencies.sh @@ -11,8 +11,8 @@ fi go version -# Check for version is greater than 1.23 -MIN_GO_VERSION="1.23" +# Check for version is greater than 1.22 +MIN_GO_VERSION="1.22" GO_VERSION=$(go version | awk '{print $3}' | tr -d "go") if [[ $(echo "$MIN_GO_VERSION $GO_VERSION" | tr " " "\n" | sort -V | head -n 1) != "$MIN_GO_VERSION" ]]; then echo "Error: Go version $GO_VERSION is installed, but version $MIN_GO_VERSION or higher is required."