Skip to content

Commit a086a82

Browse files
committed
WIP
1 parent a4d1db4 commit a086a82

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

zcash_client_sqlite/src/lib.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -828,9 +828,9 @@ impl<P: consensus::Parameters> WalletWrite for WalletDb<rusqlite::Connection, P>
828828
// Ensure we have a Sapling checkpoint for each checkpointed Orchard block height
829829
#[cfg(feature = "orchard")]
830830
for (height, checkpoint) in dbg!(&missing_sapling_checkpoints) {
831-
sapling_tree
831+
dbg!(sapling_tree
832832
.store_mut()
833-
.add_checkpoint(*height, checkpoint.clone())
833+
.add_checkpoint(*height, checkpoint.clone()))
834834
.map_err(ShardTreeError::Storage)?;
835835
}
836836

@@ -856,9 +856,9 @@ impl<P: consensus::Parameters> WalletWrite for WalletDb<rusqlite::Connection, P>
856856
}
857857

858858
for (height, checkpoint) in dbg!(&missing_orchard_checkpoints) {
859-
orchard_tree
859+
dbg!(orchard_tree
860860
.store_mut()
861-
.add_checkpoint(*height, checkpoint.clone())
861+
.add_checkpoint(*height, checkpoint.clone()))
862862
.map_err(ShardTreeError::Storage)?;
863863
}
864864

0 commit comments

Comments
 (0)