refactor: split async/sync work in stages (#4636)

Co-authored-by: Roman Krasiuk <rokrassyuk@gmail.com>
This commit is contained in:
Bjerg
2023-11-17 22:12:12 +01:00
committed by GitHub
parent 7f9ce6f7c0
commit db5d01e328
39 changed files with 775 additions and 681 deletions

View File

@ -111,8 +111,7 @@ impl Case for BlockchainTestCase {
.expect("Could not build tokio RT")
.block_on(async {
// ignore error
let _ =
stage.execute(&provider, ExecInput { target, checkpoint: None }).await;
let _ = stage.execute(&provider, ExecInput { target, checkpoint: None });
});
}