From 29b5e4459bfc44831904f0f36dca167163ce0417 Mon Sep 17 00:00:00 2001 From: Aditya Kulkarni Date: Mon, 21 Oct 2019 09:38:35 -0700 Subject: [PATCH] Update version number --- Cargo.toml | 2 +- lib/src/lightwallet.rs | 2 -- src/main.rs | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9cd0e83..4b0a909 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zecwallet-cli" -version = "1.0.0" +version = "1.1.0" edition = "2018" [dependencies] diff --git a/lib/src/lightwallet.rs b/lib/src/lightwallet.rs index 5fa0d67..9a3e0f8 100644 --- a/lib/src/lightwallet.rs +++ b/lib/src/lightwallet.rs @@ -39,7 +39,6 @@ use zcash_primitives::{ primitives::{PaymentAddress}, }; - use crate::lightclient::{LightClientConfig}; mod data; @@ -58,7 +57,6 @@ fn now() -> f64 { SystemTime::now().duration_since(SystemTime::UNIX_EPOCH).unwrap().as_secs() as f64 } - /// Sha256(Sha256(value)) pub fn double_sha256(payload: &[u8]) -> Vec { let h1 = Sha256::digest(&payload); diff --git a/src/main.rs b/src/main.rs index 780a08c..96acb52 100644 --- a/src/main.rs +++ b/src/main.rs @@ -54,7 +54,7 @@ pub fn main() { // Get command line arguments use clap::{Arg, App}; let matches = App::new("Zecwallet CLI") - .version("1.0.0") + .version("1.1.0") .arg(Arg::with_name("seed") .short("s") .long("seed")