Skip to content

Commit 9516ddc

Browse files
author
Cuong Pham
committed
f
1 parent a9775dd commit 9516ddc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

StellarDotnetSdk.Tests/Responses/TransactionDeserializerTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,13 +114,13 @@ private static void AssertTransactionMuxedAccount(TransactionResponse transactio
114114
Assert.AreEqual("GBZG3SMBL6FPLYYNQP6DMVZHDHCDIR4J4GYRGKE5BYRVLBYN364RBL5S", transaction.SourceAccount);
115115
Assert.AreEqual("MBZG3SMBL6FPLYYNQP6DMVZHDHCDIR4J4GYRGKE5BYRVLBYN364RAAAAAAAAAAAAAH52S",
116116
transaction.AccountMuxed);
117-
Assert.AreEqual("1", transaction.AccountMuxedId);
117+
Assert.AreEqual(1UL, transaction.AccountMuxedId);
118118
Assert.AreEqual(8052569758760961L, transaction.SourceAccountSequence);
119119
Assert.AreEqual(1, transaction.OperationCount);
120120
Assert.AreEqual("GBZG3SMBL6FPLYYNQP6DMVZHDHCDIR4J4GYRGKE5BYRVLBYN364RBL5S", transaction.FeeAccount);
121121
Assert.AreEqual("MBZG3SMBL6FPLYYNQP6DMVZHDHCDIR4J4GYRGKE5BYRVLBYN364RAAAAAAAAAAAAAH52S",
122122
transaction.FeeAccountMuxed);
123-
Assert.AreEqual("1", transaction.FeeAccountMuxedId);
123+
Assert.AreEqual(1UL, transaction.FeeAccountMuxedId);
124124
Assert.AreEqual(100L, transaction.FeeCharged);
125125
Assert.AreEqual(100L, transaction.MaxFee);
126126
Assert.AreEqual(

StellarDotnetSdk/Responses/TransactionResponse.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ public sealed class TransactionResponse : Response, IPagingToken
144144
/// The muxed account ID of the source account, if applicable.
145145
/// </summary>
146146
[JsonPropertyName("account_muxed_id")]
147-
public string? AccountMuxedId { get; init; }
147+
public ulong? AccountMuxedId { get; init; }
148148

149149
/// <summary>
150150
/// The muxed account representation of the source account, if applicable.
@@ -156,7 +156,7 @@ public sealed class TransactionResponse : Response, IPagingToken
156156
/// The muxed account ID of the fee account, if applicable.
157157
/// </summary>
158158
[JsonPropertyName("fee_account_muxed_id")]
159-
public string? FeeAccountMuxedId { get; init; }
159+
public ulong? FeeAccountMuxedId { get; init; }
160160

161161
/// <summary>
162162
/// The memo value attached to this transaction.

0 commit comments

Comments
 (0)