Skip to content

Commit

Permalink
hash removal fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zorancv committed Dec 9, 2024
1 parent 2e96b73 commit 3814175
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions graph/src/blockchain/block_stream.rs
Original file line number Diff line number Diff line change
Expand Up @@ -360,10 +360,10 @@ impl<C: Blockchain> TriggersAdapterWrapper<C> {
entities: ent,
}) = filter.subgraph_filter.first()
{
if let Some((dh2, store)) = self.source_subgraph_stores.first() {
if let Some(store) = self.source_subgraph_stores.first() {
let schema = store.input_schema();
let dh2 = schema.id();
if dh == dh2 {
let schema =
<dyn crate::components::store::SourceableStore>::input_schema(store);
if let Some(entity_type) = ent.first() {
let et = schema.entity_type(entity_type).unwrap();

Expand Down

0 comments on commit 3814175

Please sign in to comment.