diff --git a/src/testcases/run_in_band/dex_stargate.test.ts b/src/testcases/run_in_band/dex_stargate.test.ts index fa49cab5..be60c0b6 100644 --- a/src/testcases/run_in_band/dex_stargate.test.ts +++ b/src/testcases/run_in_band/dex_stargate.test.ts @@ -174,7 +174,7 @@ describe('Neutron / dex module (stargate contract)', () => { token_in: 'untrn', token_out: 'uibcusdc', tick_index_in_to_out: 30000, - amount_in: '10', + amount_in: '100', order_type: LimitOrderType.FillOrKill, max_amount_out: '100', }, @@ -426,25 +426,6 @@ describe('Neutron / dex module (stargate contract)', () => { ); }); test('LimitOrderTrancheUserQuery', async () => { - const resTx = await neutronAccount.executeContract( - contractAddress, - JSON.stringify({ - place_limit_order: { - receiver: contractAddress, - token_in: 'untrn', - token_out: 'uibcusdc', - tick_index_in_to_out: 1, - amount_in: '10', - order_type: LimitOrderType.JustInTime, - }, - }), - ); - expect(resTx.code).toEqual(0); - activeTrancheKey = getEventAttributesFromTx( - { tx_response: resTx }, - 'TickUpdate', - ['TrancheKey'], - )[0]['TrancheKey']; const res = await neutronAccount.chain.queryContract( contractAddress, @@ -487,7 +468,7 @@ describe('Neutron / dex module (stargate contract)', () => { { get_limit_order_tranche: { pair_id: 'uibcusdc<>untrn', - tick_index: -2000, + tick_index: -200, token_in: 'untrn', tranche_key: activeTrancheKey, },