Skip to content

Commit fb8c364

Browse files
authored
Merge pull request #1164 from fluidvanadium/zip317_integration
Zip317 integration... Upgrades a couple integration tests.
2 parents 1063bd7 + 0bb4a31 commit fb8c364

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

darkside-tests/tests/tests.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,13 +142,13 @@ async fn sent_transaction_reorged_into_mempool() {
142142
transparent_balance: Some(0)
143143
}
144144
);
145-
let txid = from_inputs::send(
145+
let one_txid = from_inputs::quick_send(
146146
&light_client,
147147
vec![(&get_base_address_macro!(recipient, "unified"), 10_000, None)],
148148
)
149149
.await
150150
.unwrap();
151-
println!("{}", txid);
151+
println!("{}", one_txid.first());
152152
recipient.do_sync(false).await.unwrap();
153153
println!("{}", recipient.do_list_transactions().await.pretty(2));
154154

integration-tests/tests/libtonode.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ mod fast {
134134
async fn utxos_are_not_prematurely_confirmed() {
135135
let (regtest_manager, _cph, faucet, recipient) =
136136
scenarios::faucet_recipient_default().await;
137-
from_inputs::send(
137+
from_inputs::quick_send(
138138
&faucet,
139139
vec![(
140140
&get_base_address_macro!(recipient, "transparent"),

0 commit comments

Comments
 (0)