Skip to content

Commit

Permalink
Merge pull request #8 from push-protocol/dev0
Browse files Browse the repository at this point in the history
fix: compile error
  • Loading branch information
Igx22 authored Nov 18, 2024
2 parents 524fd81 + d30d1e5 commit b928061
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 b928061

Please sign in to comment.