Skip to content

Commit

Permalink
Update fee pool payment timing
Browse files Browse the repository at this point in the history
  • Loading branch information
cwlittle committed Apr 3, 2024
1 parent a21b413 commit ec02f25
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions tests/bitcoin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -458,14 +458,6 @@ async fn bitcoin_test() {
let balance = poll_for_updated_balance(funded_accounts[1].address, expected_balance).await;
assert_eq!(balance, Amount::from(expected_balance));

withdraw_bitcoin(
&funded_accounts[0],
bitcoin::Amount::from_sat(7000),
&withdraw_address,
)
.await
.unwrap();

app_client()
.with_wallet(funded_accounts[0].wallet.clone())
.call(
Expand All @@ -474,6 +466,14 @@ async fn bitcoin_test() {
)
.await?;

withdraw_bitcoin(
&funded_accounts[0],
bitcoin::Amount::from_sat(7000),
&withdraw_address,
)
.await
.unwrap();

btc_client
.generate_to_address(4, &async_wallet_address)
.await
Expand Down

0 comments on commit ec02f25

Please sign in to comment.