Skip to content

Commit

Permalink
Fixed deserialization error in SubscribeToBatchedTickerUpdatesAsync s…
Browse files Browse the repository at this point in the history
…ubscription
  • Loading branch information
JKorf committed Nov 21, 2024
1 parent ff34ac2 commit dc8c4c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Coinbase.Net/Objects/Models/CoinbaseTicker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public record CoinbaseBatchTicker
/// Last trade price
/// </summary>
[JsonPropertyName("price")]
public decimal LastPrice { get; set; }
public decimal? LastPrice { get; set; }
/// <summary>
/// Volume in last 24 hours
/// </summary>
Expand Down

0 comments on commit dc8c4c9

Please sign in to comment.