Skip to content

Commit

Permalink
Fixed SubscribeToMiniTickerUpdatesAsync deserialization with too larg…
Browse files Browse the repository at this point in the history
…e number
  • Loading branch information
JKorf committed Aug 8, 2024
1 parent 37a8708 commit 040815c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mexc.Net/Objects/Models/Spot/MexcStreamMiniTick.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public record MexcStreamMiniTick : MexcStreamEvent
/// <summary>
/// 24h volume
/// </summary>
[JsonProperty("q")]
[JsonProperty("q"), JsonConverter(typeof(BigDecimalConverter))]
public decimal Volume { get; set; }
/// <summary>
/// 24h quote volume
Expand Down

0 comments on commit 040815c

Please sign in to comment.