Skip to content

Commit eaadbc2

Browse files
committed
fixed the method
1 parent 57bd806 commit eaadbc2

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

zingolib/src/wallet/transactions.rs

+2-4
Original file line numberDiff line numberDiff line change
@@ -102,11 +102,9 @@ impl WalletRead for TxMapAndMaybeTrees {
102102
Err(e) => match e {},
103103
};
104104

105-
let target_height = highest_block_height.map(|height| height + 1);
106-
107-
Ok(target_height.map(|height| {
105+
Ok(highest_block_height.map(|height| {
108106
(
109-
height,
107+
height + 1,
110108
BlockHeight::from_u32(std::cmp::max(
111109
1,
112110
u32::from(height).saturating_sub(u32::from(min_confirmations)),

0 commit comments

Comments
 (0)