We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ca993b commit 729f459Copy full SHA for 729f459
searcher_client/src/lib.rs
@@ -112,11 +112,9 @@ where
112
113
let result = send_bundle_no_wait(transactions, searcher_client).await?;
114
115
- // grab uuid from block engine + wait for results
116
let uuid = result.into_inner().uuid;
117
info!("Bundle sent. UUID: {:?}", uuid);
118
119
- info!("Waiting for 10 seconds to hear results...");
120
let mut time_left = 10000;
121
while let Ok(Some(Ok(results))) = timeout(
122
Duration::from_millis(time_left),
@@ -184,6 +182,7 @@ where
184
182
error.to_string(),
185
183
)));
186
}
+
187
info!("Bundle landed successfully");
188
for sig in bundle_signatures.iter() {
189
info!("https://solscan.io/tx/{}", sig);
0 commit comments