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

Commit

Permalink
✅ Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ishantiw committed Feb 12, 2024
1 parent 2cace9d commit 963b22d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ describe('fast_chain_switching_mechanism', () => {
chainModule = new Chain({
maxTransactionsSize: 15000,
keepEventsForHeights: -1,
keepInclusionProofsForHeights: -1,
});
chainModule.init({
db: new InMemoryDatabase(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ describe('Synchronizer', () => {
chainModule = new Chain({
maxTransactionsSize: applicationConfigSchema.default.genesis.maxTransactionsSize,
keepEventsForHeights: applicationConfigSchema.default.system.keepEventsForHeights,
keepInclusionProofsForHeights:
applicationConfigSchema.default.system.keepInclusionProofsForHeights,
});
chainModule.init({
db: new InMemoryDatabase(),
Expand Down

0 comments on commit 963b22d

Please sign in to comment.