Skip to content

Commit 5af6e57

Browse files
author
Shaun Gould
authored
Merge pull request #30 from HorizenOfficial/TOOLS-1933
feat:updated zend and go versions
2 parents 9503b64 + 1d1bae6 commit 5af6e57

File tree

6 files changed

+16
-53
lines changed

6 files changed

+16
-53
lines changed

Dockerfile

+3-3
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 3.2.1
24-
ARG ZEN_COMMITTISH=v3.2.1
23+
# Latest release zen 4.0.0-rc1
24+
ARG ZEN_COMMITTISH=v4.0.0-rc1
2525
ARG IS_RELEASE=false
2626
# cronic <cronic@zensystem.io> https://keys.openpgp.org/vks/v1/by-fingerprint/219F55740BBF7A1CE368BA45FB7053CE4991B669
2727
# Luigi Varriale <luigi@horizenlabs.io> https://keys.openpgp.org/vks/v1/by-fingerprint/FC3388A460ACFAB04E8328C07BB2A1D2CFDFCD2C
@@ -35,7 +35,7 @@ RUN set -euxo pipefail \
3535
&& apt-get -y --no-install-recommends install autoconf automake \
3636
bsdmainutils build-essential ca-certificates cmake curl dirmngr fakeroot \
3737
git g++-multilib gnupg2 libc6-dev libgomp1 libtool m4 ncurses-dev \
38-
pkg-config zlib1g-dev \
38+
pkg-config python3 zlib1g-dev \
3939
&& git clone https://github.com/HorizenOfficial/zen.git \
4040
&& cd /zen && git checkout "${ZEN_COMMITTISH}" \
4141
&& if [ "$IS_RELEASE" = "true" ]; then \

go.mod

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/HorizenOfficial/rosetta-zen
22

3-
go 1.13
3+
go 1.16
44

55
require (
66
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f
@@ -12,6 +12,9 @@ require (
1212
go.uber.org/zap v1.16.0
1313
golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a
1414
golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208
15+
)
16+
17+
require (
1518
golang.org/x/tools v0.0.0-20200904185747-39188db58858 // indirect
1619
honnef.co/go/tools v0.0.1-2020.1.5 // indirect
1720
)

0 commit comments

Comments
 (0)