Skip to content

Commit 3814175

Browse files
author
Zoran Cvetkov
committed
hash removal fix
1 parent 2e96b73 commit 3814175

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

graph/src/blockchain/block_stream.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -360,10 +360,10 @@ impl<C: Blockchain> TriggersAdapterWrapper<C> {
360360
entities: ent,
361361
}) = filter.subgraph_filter.first()
362362
{
363-
if let Some((dh2, store)) = self.source_subgraph_stores.first() {
363+
if let Some(store) = self.source_subgraph_stores.first() {
364+
let schema = store.input_schema();
365+
let dh2 = schema.id();
364366
if dh == dh2 {
365-
let schema =
366-
<dyn crate::components::store::SourceableStore>::input_schema(store);
367367
if let Some(entity_type) = ent.first() {
368368
let et = schema.entity_type(entity_type).unwrap();
369369

0 commit comments

Comments
 (0)