From 1477fd3f40a35a2dedf57acedc522a5c2f8f9a31 Mon Sep 17 00:00:00 2001 From: Sean Bowe Date: Tue, 19 Jul 2016 14:01:58 -0600 Subject: [PATCH] Remove the constraint system from the alpha proving key. --- src/init.cpp | 4 ++-- src/zcbenchmarks.cpp | 4 ++-- zcutil/fetch-params.sh | 8 ++++---- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/init.cpp b/src/init.cpp index ff158949..19ac9792 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -605,8 +605,8 @@ static void ZC_LoadParams() struct timeval tv_start, tv_end; float elapsed; - boost::filesystem::path pk_path = ZC_GetParamsDir() / "z5-proving.key"; - boost::filesystem::path vk_path = ZC_GetParamsDir() / "z5-verifying.key"; + boost::filesystem::path pk_path = ZC_GetParamsDir() / "z7-proving.key"; + boost::filesystem::path vk_path = ZC_GetParamsDir() / "z7-verifying.key"; pzcashParams = ZCJoinSplit::Unopened(); diff --git a/src/zcbenchmarks.cpp b/src/zcbenchmarks.cpp index 1c9ae748..abe631f8 100644 --- a/src/zcbenchmarks.cpp +++ b/src/zcbenchmarks.cpp @@ -50,8 +50,8 @@ double benchmark_sleep() double benchmark_parameter_loading() { // FIXME: this is duplicated with the actual loading code - boost::filesystem::path pk_path = ZC_GetParamsDir() / "z5-proving.key"; - boost::filesystem::path vk_path = ZC_GetParamsDir() / "z5-verifying.key"; + boost::filesystem::path pk_path = ZC_GetParamsDir() / "z7-proving.key"; + boost::filesystem::path vk_path = ZC_GetParamsDir() / "z7-verifying.key"; timer_start(); diff --git a/zcutil/fetch-params.sh b/zcutil/fetch-params.sh index 9736c667..a28b3182 100755 --- a/zcutil/fetch-params.sh +++ b/zcutil/fetch-params.sh @@ -4,8 +4,8 @@ set -eu PARAMS_DIR="$HOME/.zcash-params" -REGTEST_PKEY_NAME='z5-proving.key' -REGTEST_VKEY_NAME='z5-verifying.key' +REGTEST_PKEY_NAME='z7-proving.key' +REGTEST_VKEY_NAME='z7-verifying.key' REGTEST_PKEY_URL="https://z.cash/downloads/$REGTEST_PKEY_NAME" REGTEST_VKEY_URL="https://z.cash/downloads/$REGTEST_VKEY_NAME" REGTEST_DIR="$PARAMS_DIR/regtest" @@ -86,8 +86,8 @@ cd "$PARAMS_DIR" # Now verify their hashes: echo 'Verifying parameter file integrity via sha256sum...' shasum -a 256 --check <