Skip to content

Commit

Permalink
Fix change rate test
Browse files Browse the repository at this point in the history
  • Loading branch information
cwlittle committed Apr 3, 2024
1 parent ec02f25 commit 9462104
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/bitcoin/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1391,6 +1391,7 @@ mod tests {
.unwrap();
let mut checkpoint_tx = building_checkpoint_batch.get_mut(0).unwrap().unwrap();
checkpoint_tx.input.push_back(input).unwrap();
btc.checkpoints.building_deposits += 1;
};

let push_withdrawal = || {
Expand All @@ -1401,6 +1402,7 @@ mod tests {

let mut building_mut = btc.checkpoints.building_mut().unwrap();
building_mut.fees_collected = 100_000_000;
btc.checkpoints.building_withdrawals += 1;
};

let sign_batch = |btc_height| {
Expand Down

0 comments on commit 9462104

Please sign in to comment.