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 72574e1 commit 72d3179Copy full SHA for 72d3179
src/node.rs
@@ -229,7 +229,7 @@ where
229
let mut response = Err(anyhow!("initial response value"));
230
231
while response.is_err() && (start.elapsed() < timeout) {
232
- response = self.client.ledger_get_head_l2_block_height().await;
+ response = self.client.ledger_get_last_scanned_l1_height().await;
233
sleep(Duration::from_millis(500)).await;
234
}
235
match response {
0 commit comments