Skip to content

Commit b49c7d9

Browse files
committed
update zcash consensus id for NU5
1 parent f022f63 commit b49c7d9

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

chain/zcash/zcash.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ var (
4848
{419200, []byte{0xBB, 0x09, 0xB8, 0x76}},
4949
{653600, []byte{0x60, 0x0E, 0xB4, 0x2B}},
5050
{903000, []byte{0x0B, 0x23, 0xB9, 0xF5}},
51-
{1046400, []byte{0xA6, 0x75, 0xff, 0xe9}},
51+
{1046400, []byte{0xA6, 0x75, 0xFF, 0xE9}},
5252
},
5353
}
5454

@@ -64,8 +64,8 @@ var (
6464
{280000, []byte{0xBB, 0x09, 0xB8, 0x76}},
6565
{584000, []byte{0x60, 0x0E, 0xB4, 0x2B}},
6666
{903800, []byte{0x0B, 0x23, 0xB9, 0xF5}},
67-
{1028500, []byte{0xA6, 0x75, 0xff, 0xe9}},
68-
{1590000, []byte{0x21, 0x96, 0x51, 0x37}},
67+
{1028500, []byte{0xA6, 0x75, 0xFF, 0xE9}},
68+
{1842420, []byte{0xB4, 0xD0, 0xD6, 0xC2}},
6969
},
7070
}
7171

@@ -81,8 +81,8 @@ var (
8181
{20, []byte{0xBB, 0x09, 0xB8, 0x76}},
8282
{30, []byte{0x60, 0x0E, 0xB4, 0x2B}},
8383
{40, []byte{0x0B, 0x23, 0xB9, 0xF5}},
84-
{50, []byte{0xA6, 0x75, 0xff, 0xe9}},
85-
{60, []byte{0x21, 0x96, 0x51, 0x37}},
84+
{50, []byte{0xA6, 0x75, 0xFF, 0xE9}},
85+
{60, []byte{0xB4, 0xD0, 0xD6, 0xC2}},
8686
},
8787
}
8888
)

infra/zcash/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM debian:buster
44
RUN apt-get update && \
55
apt-get install -y --no-install-recommends apt-transport-https gnupg2 ca-certificates wget && \
66
wget -qO - https://apt.z.cash/zcash.asc | apt-key add - && \
7-
echo "deb [arch=amd64] https://apt.z.cash/ buster main" | tee /etc/apt/sources.list.d/zcash.list && \
7+
echo "deb [arch=amd64] https://apt.z.cash/ buster main" | tee /etc/apt/sources.list.d/zcash.list && \
88
apt-get update && apt-get install -y --no-install-recommends zcash && \
99
mkdir -p /root/.zcash-params && zcash-fetch-params
1010

infra/zcash/run.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ zcashd \
99
-nuparams=2bb40e60:30 \
1010
-nuparams=f5b9230b:40 \
1111
-nuparams=e9ff75a6:50 \
12-
-nuparams=37519621:60
12+
-nuparams=c2d6d0b4:60
1313
sleep 20
1414

1515
echo "ZCASH_ADDRESS=$ADDRESS"

0 commit comments

Comments
 (0)