File tree 5 files changed +10
-8
lines changed
5 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ os: linux
2
2
dist : bionic
3
3
language : go
4
4
go :
5
- - " 1.15.3 "
5
+ - " 1.17.2 "
6
6
services :
7
7
- docker
8
8
addons :
Original file line number Diff line number Diff line change @@ -20,8 +20,8 @@ MAINTAINER cronic@horizen.io
20
20
21
21
SHELL ["/bin/bash" , "-c" ]
22
22
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
25
25
ARG IS_RELEASE=false
26
26
# cronic <cronic@zensystem.io> http://pool.sks-keyservers.net:11371/pks/lookup?search=0x219F55740BBF7A1CE368BA45FB7053CE4991B669&op=vindex
27
27
# 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
63
63
64
64
SHELL ["/bin/bash" , "-c" ]
65
65
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
68
68
ARG GOLANG_DOWNLOAD_URL="https://golang.org/dl/go${GOLANG_VERSION}.linux-amd64.tar.gz"
69
69
70
70
COPY . /go/src
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ if [ "$(stat -c '%u:%g' /data)" != "65534:65534" ]; then
7
7
exit 1
8
8
fi
9
9
10
- /app/fetch-params.sh
10
+ if [ " ${MODE:- x} " = " ONLINE" ]; then
11
+ /app/fetch-params.sh
12
+ fi
11
13
12
14
exec " $@ "
Original file line number Diff line number Diff line change 30
30
defaultNetworkOptions = & types.NetworkOptionsResponse {
31
31
Version : & types.Version {
32
32
RosettaVersion : types .RosettaAPIVersion ,
33
- NodeVersion : "2.0.23 " ,
33
+ NodeVersion : "2.0.24 " ,
34
34
MiddlewareVersion : & middlewareVersion ,
35
35
},
36
36
Allow : & types.Allow {
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ import (
24
24
const (
25
25
// NodeVersion is the version of
26
26
// zend core we are using.
27
- NodeVersion = "2.0.23 "
27
+ NodeVersion = "2.0.24 "
28
28
29
29
// HistoricalBalanceLookup indicates
30
30
// that historical balance lookup is supported.
You can’t perform that action at this time.
0 commit comments