From e31f76e79b0b22917255fdf7519da666b2a6ae50 Mon Sep 17 00:00:00 2001 From: Paul Hauner Date: Thu, 28 Nov 2019 14:58:53 +1100 Subject: [PATCH] Upgrade tesnet deposit contract version --- eth2/utils/deposit_contract/build.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eth2/utils/deposit_contract/build.rs b/eth2/utils/deposit_contract/build.rs index f5b059983e..ea59acc82c 100644 --- a/eth2/utils/deposit_contract/build.rs +++ b/eth2/utils/deposit_contract/build.rs @@ -10,12 +10,13 @@ use std::io::Write; use std::path::PathBuf; const TAG: &str = "v0.9.2"; +const UNSAFE_TAG: &str = "v0.9.2.1"; fn spec_url() -> String { format!("https://raw.githubusercontent.com/ethereum/eth2.0-specs/{}/deposit_contract/contracts/validator_registration.json", TAG) } fn testnet_url() -> String { - format!("https://raw.githubusercontent.com/sigp/unsafe-eth2-deposit-contract/{}/unsafe_validator_registration.json", TAG) + format!("https://raw.githubusercontent.com/sigp/unsafe-eth2-deposit-contract/{}/unsafe_validator_registration.json", UNSAFE_TAG) } fn main() {