Skip to content

Commit 21d607c

Browse files
committed
chore: remove extra jetton logs
1 parent ebf8cad commit 21d607c

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

TonLibDotNet.Demo/Samples/Recipes/Jettons.cs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,15 @@ public async Task Run(bool inMainnet)
4545
logger.LogInformation(" Balance: {Value}", wd.balance);
4646
logger.LogInformation(" Owner: {Value}", wd.ownerAddress);
4747
logger.LogInformation(" Jett.Master: {Value}", wd.jettonMinterAddress);
48-
logger.LogInformation(" Code: \r\n{Value}", wd.jettonWalletCode.DumpCells());
48+
////logger.LogInformation(" Code: \r\n{Value}", wd.jettonWalletCode.DumpCells());
4949

5050
var jd = await TonRecipes.Jettons.GetJettonData(tonClient, jettonMinterAddress);
5151
logger.LogInformation("Info for Jetton Minter address {Address}:", jettonMinterAddress);
5252
logger.LogInformation(" Total supply:{Value}", jd.totalSupply);
5353
logger.LogInformation(" Mintable: {Value}", jd.mintable);
5454
logger.LogInformation(" Admin: {Value}", jd.adminAddress);
55-
logger.LogInformation(" Content: \r\n{Value}", jd.jettonContent.DumpCells());
56-
logger.LogInformation(" Wallet code: \r\n{Value}", jd.jettonWalletCode.DumpCells());
55+
////logger.LogInformation(" Content: \r\n{Value}", jd.jettonContent.DumpCells());
56+
////logger.LogInformation(" Wallet code: \r\n{Value}", jd.jettonWalletCode.DumpCells());
5757

5858
if (inMainnet)
5959
{
@@ -74,6 +74,8 @@ public async Task Run(bool inMainnet)
7474
_ = await tonClient.QuerySend(query.Id);
7575

7676
await tonClient.DeleteKey(inputKey);
77+
78+
logger.LogInformation("Sent 1 jetton to {Dest}", receiverWalletWalletTestnet);
7779
}
7880
}
7981
}

0 commit comments

Comments
 (0)