Skip to content
This repository was archived by the owner on Sep 26, 2023. It is now read-only.

Commit 7608df0

Browse files
committed
v1.8.0-beta2
checkpoint & track orchard notes update balance command allow mixed pool transactions
1 parent 6536876 commit 7608df0

21 files changed

+836
-185
lines changed

Cargo.lock

Lines changed: 12 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,18 @@ members = [
88
debug = false
99

1010
[patch.crates-io]
11-
zcash_address = { git = "https://github.com/zcash/librustzcash", rev = "09567fc280463f5797a77f1d764205be8ad8e64a"}
12-
zcash_primitives = { git = "https://github.com/zcash/librustzcash", rev = "09567fc280463f5797a77f1d764205be8ad8e64a"}
13-
zcash_client_backend = { git = "https://github.com/zcash/librustzcash", rev = "09567fc280463f5797a77f1d764205be8ad8e64a"}
14-
zcash_note_encryption = { git = "https://github.com/zcash/librustzcash", rev = "09567fc280463f5797a77f1d764205be8ad8e64a"}
15-
zcash_encoding = { git = "https://github.com/zcash/librustzcash", rev = "09567fc280463f5797a77f1d764205be8ad8e64a"}
16-
zcash_proofs = { git = "https://github.com/zcash/librustzcash", rev = "09567fc280463f5797a77f1d764205be8ad8e64a"}
11+
zcash_address = { git = "https://github.com/adityapk00/librustzcash", rev = "adf49f8b848a5ac85e1476354614eeae9880206a"}
12+
zcash_primitives = { git = "https://github.com/adityapk00/librustzcash", rev = "adf49f8b848a5ac85e1476354614eeae9880206a"}
13+
zcash_client_backend = { git = "https://github.com/adityapk00/librustzcash", rev = "adf49f8b848a5ac85e1476354614eeae9880206a"}
14+
zcash_note_encryption = { git = "https://github.com/adityapk00/librustzcash", rev = "adf49f8b848a5ac85e1476354614eeae9880206a"}
15+
zcash_encoding = { git = "https://github.com/adityapk00/librustzcash", rev = "adf49f8b848a5ac85e1476354614eeae9880206a"}
16+
zcash_proofs = { git = "https://github.com/adityapk00/librustzcash", rev = "adf49f8b848a5ac85e1476354614eeae9880206a"}
17+
orchard = { git = "https://github.com/adityapk00/orchard", rev = "0a960a380f4e9c3472c9260f3df61cd5e50d51b0" }
18+
19+
#zcash_address = { path = "../librustzcash/components/zcash_address/" }
20+
#zcash_primitives = { path = "../librustzcash/zcash_primitives/" }
21+
#zcash_client_backend = { path = "../librustzcash/zcash_client_backend" }
22+
#zcash_note_encryption = { path = "../librustzcash/components/zcash_note_encryption" }
23+
#zcash_encoding = { path = "../librustzcash/components/zcash_encoding/" }
24+
#zcash_proofs = { path = "../librustzcash/zcash_proofs/" }
25+
#orchard = { path = "../orchard/" }

cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zecwallet-cli"
3-
version = "1.8.0-beta1"
3+
version = "1.8.0-beta2"
44
edition = "2018"
55

66
[dependencies]

cli/src/version.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pub const VERSION: &str = "1.8.0-beta1";
1+
pub const VERSION: &str = "1.8.0-beta2";

lib/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ group = "0.12"
4949
rust-embed = { version = "6.3.0", features = ["debug-embed"] }
5050

5151
orchard = "0.2.0"
52+
incrementalmerkletree = "0.3"
53+
5254
zcash_address = "0.1.0"
5355
zcash_primitives = { version = "0.7.0", features = ["transparent-inputs"] }
5456
zcash_client_backend = "0.5.0"

0 commit comments

Comments
 (0)