Skip to content

Commit

Permalink
fixed fee denom
Browse files Browse the repository at this point in the history
  • Loading branch information
swelf19 committed Nov 13, 2024
1 parent 5ae3bc3 commit 898cdb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/testcases/run_in_band/chain_manager.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ describe('Neutron / Chain Manager', () => {
'Proposal #3',
'Globalfee update params proposal. Will pass',
updateGlobalFeeParamsProposal({
minimum_gas_prices: [{ denom: 'newdenom', amount: '0.5' }],
minimum_gas_prices: [{ denom: 'untrn', amount: '0.111' }],
bypass_min_fee_msg_types: ['/gaia.globalfee.v1beta1.MsgUpdateParams'],
max_total_bypass_min_fee_msg_gas_usage: '12345',
}),
Expand All @@ -479,7 +479,7 @@ describe('Neutron / Chain Manager', () => {

const globalfeeParams = await globalfeeQuerier.params();
expect(globalfeeParams.params.minimumGasPrices).toEqual([
{ denom: 'newdenom', amount: '0.5' },
{ denom: 'untrn', amount: '0.111' },
]);
expect(globalfeeParams.params.bypassMinFeeMsgTypes).toEqual([
'/gaia.globalfee.v1beta1.MsgUpdateParams',
Expand Down

0 comments on commit 898cdb6

Please sign in to comment.