Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Commit

Permalink
♻️ Fix transport type issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ManuGowda committed May 5, 2020
1 parent 8348ad8 commit 71546ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion framework/src/application/node/transport/transport.ts
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ export class Transport {
transactions.splice(DEFAULT_RATE_RESET_TIME);

return {
transactions,
transactions: (transactions as unknown) as TransactionJSON[],
};
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ describe('Node', () => {
});

it('should initialize forger module with high fee strategy', async () => {
expect(node.forger.forgingStrategy).toBeInstanceOf(
expect(node.forger._forgingStrategy).toBeInstanceOf(
HighFeeForgingStrategy,
);
});
Expand Down

0 comments on commit 71546ef

Please sign in to comment.