Skip to content

Commit 8a12763

Browse files
authored
Merge pull request #14 from HorizenOfficial/development
Release version with zend 2.0.24
2 parents df269fb + e5d2edc commit 8a12763

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ os: linux
22
dist: bionic
33
language: go
44
go:
5-
- "1.15.3"
5+
- "1.17.2"
66
services:
77
- docker
88
addons:

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ MAINTAINER cronic@horizen.io
2020

2121
SHELL ["/bin/bash", "-c"]
2222

23-
# Latest release zen 2.0.23
24-
ARG ZEN_COMMITTISH=v2.0.23
23+
# Latest release zen 2.0.24
24+
ARG ZEN_COMMITTISH=v2.0.24
2525
ARG IS_RELEASE=false
2626
# cronic <cronic@zensystem.io> http://pool.sks-keyservers.net:11371/pks/lookup?search=0x219F55740BBF7A1CE368BA45FB7053CE4991B669&op=vindex
2727
# Luigi Varriale <luigi@zensystem.io> http://pool.sks-keyservers.net:11371/pks/lookup?search=0x7C20EDC1CABFC9D1005EADBF3C80D9DD9F971AB6&op=vindex
@@ -63,8 +63,8 @@ MAINTAINER cronic@horizen.io
6363

6464
SHELL ["/bin/bash", "-c"]
6565

66-
ARG GOLANG_VERSION=1.15.3
67-
ARG GOLANG_DOWNLOAD_SHA256=010a88df924a81ec21b293b5da8f9b11c176d27c0ee3962dc1738d2352d3c02d
66+
ARG GOLANG_VERSION=1.17.2
67+
ARG GOLANG_DOWNLOAD_SHA256=f242a9db6a0ad1846de7b6d94d507915d14062660616a61ef7c808a76e4f1676
6868
ARG GOLANG_DOWNLOAD_URL="https://golang.org/dl/go${GOLANG_VERSION}.linux-amd64.tar.gz"
6969

7070
COPY . /go/src

entrypoint.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ if [ "$(stat -c '%u:%g' /data)" != "65534:65534" ]; then
77
exit 1
88
fi
99

10-
/app/fetch-params.sh
10+
if [ "${MODE:-x}" = "ONLINE" ]; then
11+
/app/fetch-params.sh
12+
fi
1113

1214
exec "$@"

services/network_service_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ var (
3030
defaultNetworkOptions = &types.NetworkOptionsResponse{
3131
Version: &types.Version{
3232
RosettaVersion: types.RosettaAPIVersion,
33-
NodeVersion: "2.0.23",
33+
NodeVersion: "2.0.24",
3434
MiddlewareVersion: &middlewareVersion,
3535
},
3636
Allow: &types.Allow{

services/types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
const (
2525
// NodeVersion is the version of
2626
// zend core we are using.
27-
NodeVersion = "2.0.23"
27+
NodeVersion = "2.0.24"
2828

2929
// HistoricalBalanceLookup indicates
3030
// that historical balance lookup is supported.

0 commit comments

Comments
 (0)