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

Commit 1aac5b5

Browse files
committed
Fix branch ID.
Fixes #89
1 parent 657024b commit 1aac5b5

File tree

4 files changed

+35
-23
lines changed

4 files changed

+35
-23
lines changed

Cargo.lock

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

lib/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ group = "0.8"
4848

4949
rust-embed = { version = "5.1.0", features = ["debug-embed"] }
5050

51-
zcash_primitives = { git = "https://github.com/adityapk00/librustzcash", rev = "adeb3ec4ad15480482bc2962bc9fe453814db9ee", features = ["transparent-inputs"] }
52-
zcash_client_backend = { git = "https://github.com/adityapk00/librustzcash", rev = "adeb3ec4ad15480482bc2962bc9fe453814db9ee"}
53-
zcash_proofs = { git = "https://github.com/adityapk00/librustzcash", rev = "adeb3ec4ad15480482bc2962bc9fe453814db9ee", features = ["multicore"]}
51+
zcash_primitives = { git = "https://github.com/adityapk00/librustzcash", rev = "b70edf39e26e4c687b5087daf2ffd40f99fffd67", features = ["transparent-inputs"] }
52+
zcash_client_backend = { git = "https://github.com/adityapk00/librustzcash", rev = "b70edf39e26e4c687b5087daf2ffd40f99fffd67"}
53+
zcash_proofs = { git = "https://github.com/adityapk00/librustzcash", rev = "b70edf39e26e4c687b5087daf2ffd40f99fffd67", features = ["multicore"]}
5454

5555
[dev-dependencies]
5656
portpicker = "0.1.0"

lib/src/lightclient.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1518,6 +1518,8 @@ impl LightClient {
15181518
let branch_id = self.consensus_branch_id().await;
15191519
info!("Creating transaction");
15201520

1521+
// println!("BranchID {:x}", branch_id);
1522+
15211523
let result = {
15221524
let _lock = self.sync_lock.lock().await;
15231525
let (sapling_output, sapling_spend) = self.read_sapling_params()?;

rust-toolchain

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
1.52

0 commit comments

Comments
 (0)