Skip to content

Commit

Permalink
increase update period
Browse files Browse the repository at this point in the history
  • Loading branch information
joldie777 committed Sep 17, 2024
1 parent 78b4c2a commit 7fd0963
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/testcases/run_in_band/interchain_kv_query.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ describe('Neutron / Interchain KV Query', () => {
4: 3,
5: 4,
6: 11,
7: 50,
7: 1_000_000,
};
let testState: LocalState;
let neutronClient: SigningNeutronClient;
Expand Down Expand Up @@ -354,13 +354,13 @@ describe('Neutron / Interchain KV Query', () => {
});

test('register icq #7: balance', async () => {
const height = (await neutronClient.getHeight()) + updatePeriods[7];
const updatePeriod = (await neutronClient.getHeight()) + updatePeriods[7];

Check failure on line 357 in src/testcases/run_in_band/interchain_kv_query.test.ts

View workflow job for this annotation

GitHub Actions / Actions - lint

Insert `⏎·········`

await registerBalancesQuery(
neutronClient,
contractAddress,
connectionId,
height,
updatePeriod,
[COSMOS_DENOM],
testState.wallets.cosmos.val1.address,
);
Expand Down

0 comments on commit 7fd0963

Please sign in to comment.