From e6cbc0dbd2d93fa955204f432470e93f4af94cb7 Mon Sep 17 00:00:00 2001 From: Howard Wu Date: Mon, 30 Sep 2019 12:34:51 -0700 Subject: [PATCH] Fix zviewkey_prefix (#6) --- lib/src/paper.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/src/paper.rs b/lib/src/paper.rs index 19edbe6..c406258 100644 --- a/lib/src/paper.rs +++ b/lib/src/paper.rs @@ -62,7 +62,7 @@ pub fn params(is_testnet: bool) -> CoinParams { tsecret_prefix : [0xEF], zaddress_prefix : "ztestsapling".to_string(), zsecret_prefix : "secret-extended-key-test".to_string(), - zviewkey_prefix : "zviews".to_string(), + zviewkey_prefix : "zviewtestsapling".to_string(), cointype : 1 } } else { @@ -71,7 +71,7 @@ pub fn params(is_testnet: bool) -> CoinParams { tsecret_prefix : [0x80], zaddress_prefix : "zs".to_string(), zsecret_prefix : "secret-extended-key-main".to_string(), - zviewkey_prefix : "zviewtestsapling".to_string(), + zviewkey_prefix : "zviews".to_string(), cointype : 133 } }