1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-21 13:23:07 +00:00

Fixed some examples

This commit is contained in:
Jkorf
2026-05-07 14:15:50 +02:00
parent 6e4dbcf7b1
commit 8c4cf62d9f
3 changed files with 10 additions and 10 deletions
@@ -56,7 +56,7 @@ async Task<TickerSnapshot?> FetchAsync(ISpotTickerRestClient client, SharedSymbo
Exchange: client.Exchange,
Symbol: result.Data.Symbol,
LastPrice: result.Data.LastPrice ?? 0,
Volume: result.Data.Volume ?? 0);
Volume: result.Data.Volume);
}
record TickerSnapshot(string Exchange, string Symbol, decimal LastPrice, decimal Volume);