Skip to content

Commit

Permalink
fix: compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
Igx22 committed Nov 18, 2024
1 parent 0582cdb commit d30d1e5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/modules/archive/archive-node.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ export class ArchiveNodeService implements Consumer<QItem> {
);
}
// validate the signature
return await this.handleBlock(deserializedBlock, bytes);
let [res, err] = await this.handleBlock(deserializedBlock, bytes);
return res;
} catch (error) {
console.log('Failed to process block:', error);
return false;
Expand Down

0 comments on commit d30d1e5

Please sign in to comment.