Skip to content

Commit

Permalink
fix tokenfactory
Browse files Browse the repository at this point in the history
  • Loading branch information
NeverHappened committed Oct 18, 2024
1 parent c73cf3e commit bb8ed8b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 22 deletions.
19 changes: 0 additions & 19 deletions contracts/checksums.txt

This file was deleted.

7 changes: 4 additions & 3 deletions src/testcases/run_in_band/tokenfactory.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -803,7 +803,7 @@ describe('Neutron / Tokenfactory', () => {
const res = await neutronClient.queryContractSmart(contractAddress, {
denom_admin: {
creator: contractAddress,
subdenom: denom,
subdenom,
},
});
console.log('res: ' + JSON.stringify(res));
Expand All @@ -827,7 +827,7 @@ describe('Neutron / Tokenfactory', () => {
const res = await neutronClient.queryContractSmart(contractAddress, {
before_send_hook: {
creator: contractAddress,
subdenom: denom,
subdenom,
},
});
expect(res.contract_addr).toEqual(contractAddress);
Expand Down Expand Up @@ -904,7 +904,8 @@ describe('Neutron / Tokenfactory', () => {
expect(balance).toEqual(amount);
const res = await neutronClient.queryContractSmart(contractAddress, {
denom_admin: {
subdenom: denom,
creator: contractAddress,
subdenom,
},
});
expect(res.admin).toEqual(neutronWallet.address);
Expand Down

0 comments on commit bb8ed8b

Please sign in to comment.