Skip to content

Commit 0b34aa3

Browse files
committed
v0.17.1 fix TonRecipes.RootDns.CreateSetWalletMessage -> CreateUpdateWalletMessage to align with other CreateUpdate...
1 parent 0698e33 commit 0b34aa3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

TonLibDotNet/Recipes/RootDnsRecipes_Write.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public partial class RootDnsRecipes
1919
/// <param name="sendMode">SendMode for this message (when null, <see cref="DefaultSendMode">DefaultSendMode</see> value will be used).</param>
2020
/// <returns>Constructed and ready-to-be-sent Message (by editor/owner of this domain!).</returns>
2121
/// <remarks>DNS Item contract must already be deployed.</remarks>
22-
public Message CreateSetWalletMessage(string domainNftAddress, string walletAddress, decimal? amount = null, int? sendMode = null)
22+
public Message CreateUpdateWalletMessage(string domainNftAddress, string walletAddress, decimal? amount = null, int? sendMode = null)
2323
{
2424
return CreateUpdateMessage(domainNftAddress, CategoryNameWallet, StoreWallet(new CellBuilder(), walletAddress), amount, sendMode);
2525
}

TonLibDotNet/TonLibDotNet.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<RepositoryType>git</RepositoryType>
1717
<PackageTags>ton, toncoin, the-open-network, tonlib, tonlibjson</PackageTags>
1818
<PackageLicenseFile>LICENSE</PackageLicenseFile>
19-
<Version>0.17.0</Version>
19+
<Version>0.17.1</Version>
2020
<PackageReleaseNotes>Static `TonRecipes` class with ready-to-use one-liners (for now, RootDns and Telemint recipes are available).</PackageReleaseNotes>
2121
<Description>TonLib (tonlibjson) wrapper for accessing Telegram Open Network lite servers (nodes) via ADNL protocol.</Description>
2222
</PropertyGroup>

0 commit comments

Comments
 (0)