Skip to content

Commit

Permalink
test stalling to close when syncing pre sapling
Browse files Browse the repository at this point in the history
  • Loading branch information
Oscar-Pepper committed Oct 12, 2023
1 parent 53cffa3 commit dd1a6bf
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions zingocli/tests/integration_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3350,10 +3350,17 @@ async fn sends_to_self_handle_balance_properly() {
}

#[tokio::test]
async fn sync_pre_orchard() {
let regtest_network = RegtestNetwork::set_orchard(10);
async fn sync_all_epochs() {
let regtest_network = RegtestNetwork::new(1, 3, 5, 7, 9, 11);
let (regtest_manager, _cph, lightclient) = scenarios::basic_no_spendable(regtest_network).await;
if let Err(e) = increase_height_and_wait_for_client(&regtest_manager, &lightclient, 15).await {
panic!("Sync error: {e}")
}
assert_eq!(1, 0);
}

// #[tokio::test]
// async fn send_pre_orchard_funds() {
// let regtest_network = RegtestNetwork::new(1, 1, 3, 5, 7, 9);

// }

0 comments on commit dd1a6bf

Please sign in to comment.