Skip to content

Commit

Permalink
rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
joshstevens19 committed Nov 22, 2024
1 parent 982f96f commit 36bac4c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion core/src/event/callback_registry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ impl EventCallbackRegistry {
info!("Detected shutdown, stopping event trigger");
break;
}

match (event_information.callback)(data.clone()).await {
Ok(_) => {
debug!(
Expand Down
2 changes: 1 addition & 1 deletion core/src/indexer/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ pub async fn process_contracts_events_with_dependencies(
contract_events.event_dependencies,
Arc::new(contract_events.events_config),
)
.await
.await
});
handles.push(handle);
}
Expand Down
4 changes: 1 addition & 3 deletions core/src/system_state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ use std::{
use once_cell::sync::Lazy;
use tracing::info;

use crate::{
indexer::task_tracker::active_indexing_count,
};
use crate::indexer::task_tracker::active_indexing_count;

static IS_RUNNING: Lazy<AtomicBool> = Lazy::new(|| AtomicBool::new(true));

Expand Down

0 comments on commit 36bac4c

Please sign in to comment.