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

Commit

Permalink
Fix branch ID.
Browse files Browse the repository at this point in the history
Fixes #89
  • Loading branch information
adityapk00 committed May 31, 2022
1 parent 657024b commit 1aac5b5
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 23 deletions.
49 changes: 29 additions & 20 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ group = "0.8"

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

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

[dev-dependencies]
portpicker = "0.1.0"
Expand Down
2 changes: 2 additions & 0 deletions lib/src/lightclient.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1518,6 +1518,8 @@ impl LightClient {
let branch_id = self.consensus_branch_id().await;
info!("Creating transaction");

// println!("BranchID {:x}", branch_id);

let result = {
let _lock = self.sync_lock.lock().await;
let (sapling_output, sapling_spend) = self.read_sapling_params()?;
Expand Down
1 change: 1 addition & 0 deletions rust-toolchain
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1.52

0 comments on commit 1aac5b5

Please sign in to comment.