Skip to content

Commit 2df63bf

Browse files
Skipping deploy message, fixed await
1 parent a6e751b commit 2df63bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/MultitokenDex.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ describe('MultitokenDex', () => {
2121

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

4141
// filling jetton wallets list
4242
for (let item of jettonMasters) {
43-
let get_result = blockchain.provider(item).get("get_wallet_address", tuple.build());
43+
let get_result = await blockchain.provider(item).get("get_wallet_address", tuple.build());
4444
dict.set(item, get_result.stack.readAddress());
4545
}
4646

0 commit comments

Comments
 (0)