Skip to content

Commit

Permalink
Fixed deserialization issue subaccount transfer
Browse files Browse the repository at this point in the history
  • Loading branch information
JKorf committed Oct 18, 2024
1 parent 462ee8e commit ae80e27
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public record BinanceSubAccountTransaction
/// <summary>
/// The transaction id
/// </summary>
[JsonPropertyName("txnId")]
[JsonPropertyName("txnId"), JsonConverter(typeof(NumberStringConverter))]
public string TransactionId { get; set; } = string.Empty;
}
}

0 comments on commit ae80e27

Please sign in to comment.