Skip to content

Commit

Permalink
fix nullables
Browse files Browse the repository at this point in the history
  • Loading branch information
pr0n00gler committed Oct 31, 2024
1 parent 4f248c5 commit ebb4b90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/testcases/parallel/grpc_queries.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ describe('Neutron / Grpc Queries', () => {
const res = await neutronClient.queryContractSmart(contractAddress, {
tokenfactory_params: {},
});
expect(res.params.denom_creation_gas_consume).toBe('0');
expect(res.params.denom_creation_gas_consume).toBe(null);
});

test('tokenfactory denom authority metadata should work', async () => {
Expand Down

0 comments on commit ebb4b90

Please sign in to comment.