Skip to content

Commit

Permalink
Skipping deploy message, fixed await
Browse files Browse the repository at this point in the history
  • Loading branch information
ProgramCrafter committed Oct 7, 2023
1 parent a6e751b commit 2df63bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/MultitokenDex.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ describe('MultitokenDex', () => {

const deployResult = await multitokenDex.send(deployer.getSender(),
{ value: toNano('0.05'), },
{ $$type: 'Deploy', queryId: 0n, });
null);
expect(deployResult.transactions).toHaveTransaction({
from: deployer.address,
to: multitokenDex.address,
Expand All @@ -40,7 +40,7 @@ describe('MultitokenDex', () => {

// filling jetton wallets list
for (let item of jettonMasters) {
let get_result = blockchain.provider(item).get("get_wallet_address", tuple.build());
let get_result = await blockchain.provider(item).get("get_wallet_address", tuple.build());
dict.set(item, get_result.stack.readAddress());
}

Expand Down

0 comments on commit 2df63bf

Please sign in to comment.