Skip to content

Commit

Permalink
explicit type
Browse files Browse the repository at this point in the history
  • Loading branch information
quasisamurai committed Sep 13, 2023
1 parent 50f32ae commit f1933a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/helpers/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ export type IcaHostParamsResponse = {

export type InterchaintxsParamsResponse = {
params: {
msg_submit_tx_max_messages: number;
msg_submit_tx_max_messages: string;
};
};

Expand Down
2 changes: 1 addition & 1 deletion src/testcases/parallel/governance.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1065,7 +1065,7 @@ describe('Neutron / Governance', () => {
test('execute passed proposal', async () => {
await daoMember1.executeProposalWithAttempts(proposalId);
const paramAfter = await neutronChain.queryMaxTxsAllowed();
expect(paramAfter).toEqual(11);
expect(paramAfter).toEqual("11");

Check failure on line 1068 in src/testcases/parallel/governance.test.ts

View workflow job for this annotation

GitHub Actions / Actions - lint

Replace `"11"` with `'11'`
});
});

Expand Down

0 comments on commit f1933a1

Please sign in to comment.