Skip to content

Commit

Permalink
Fix bitcoin test
Browse files Browse the repository at this point in the history
  • Loading branch information
mappum committed Sep 19, 2024
1 parent 0d60e31 commit 662cb98
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions tests/bitcoin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,12 @@ async fn bitcoin_test() {
max_length: 59,
..Default::default()
};
let funded_accounts = setup_test_app(&path, 4, Some(headers_config), None, None, None);
let cp_config = CheckpointConfig {
emergency_disbursal_lock_time_interval: 90,
..Default::default()
};
let funded_accounts =
setup_test_app(&path, 4, Some(headers_config), Some(cp_config), None, None);

let node = Node::<nomic::app::App>::new(node_path, Some("nomic-e2e"), Default::default());
let _node_child = node.await.run().await.unwrap();
Expand Down Expand Up @@ -546,7 +551,7 @@ async fn bitcoin_test() {
}
}
}
assert_eq!(signatory_balance, 49993057);
assert_eq!(signatory_balance, 49992973);

let funded_account_balances: Vec<_> = funded_accounts
.iter()
Expand Down

0 comments on commit 662cb98

Please sign in to comment.