refactor: remove sig limit and delay on scraper

This commit is contained in:
dboures 2023-06-02 01:38:08 -05:00
parent 89e2fa7178
commit bf653c9672
No known key found for this signature in database
GPG Key ID: AB3790129D478852
1 changed files with 1 additions and 2 deletions

View File

@ -30,12 +30,11 @@ pub async fn scrape(
scrape_transactions(
&rpc_client,
before_slot,
Some(150),
Some(1000),
fill_sender,
target_markets,
)
.await;
tokio::time::sleep(WaitDuration::from_millis(250)).await;
}
}