We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6e751b commit 2df63bfCopy full SHA for 2df63bf
tests/MultitokenDex.spec.ts
@@ -21,7 +21,7 @@ describe('MultitokenDex', () => {
21
22
const deployResult = await multitokenDex.send(deployer.getSender(),
23
{ value: toNano('0.05'), },
24
- { $$type: 'Deploy', queryId: 0n, });
+ null);
25
expect(deployResult.transactions).toHaveTransaction({
26
from: deployer.address,
27
to: multitokenDex.address,
@@ -40,7 +40,7 @@ describe('MultitokenDex', () => {
40
41
// filling jetton wallets list
42
for (let item of jettonMasters) {
43
- 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());
44
dict.set(item, get_result.stack.readAddress());
45
}
46
0 commit comments