mirror of
https://github.com/Expand-sys/CCash
synced 2026-03-22 20:47:10 +11:00
🐛 receiving field should not be in quotes
This commit is contained in:
parent
8e44a3d446
commit
37b110d36f
1 changed files with 2 additions and 2 deletions
|
|
@ -68,9 +68,9 @@ std::string Log::GetLogsV2() noexcept
|
||||||
{
|
{
|
||||||
log_snapshot_v2 += "{\"counterparty\":\""; //17
|
log_snapshot_v2 += "{\"counterparty\":\""; //17
|
||||||
log_snapshot_v2 += data[i].counterparty; //max_name_size?
|
log_snapshot_v2 += data[i].counterparty; //max_name_size?
|
||||||
log_snapshot_v2 += "\",\"receiving\":\""; //15
|
log_snapshot_v2 += "\",\"receiving\":"; //15
|
||||||
log_snapshot_v2 += std::to_string(data[i].receiving); //4
|
log_snapshot_v2 += std::to_string(data[i].receiving); //4
|
||||||
log_snapshot_v2 += "\",\"amount\":"; //11
|
log_snapshot_v2 += ",\"amount\":"; //11
|
||||||
log_snapshot_v2 += std::to_string(data[i].amount); //10?
|
log_snapshot_v2 += std::to_string(data[i].amount); //10?
|
||||||
log_snapshot_v2 += ",\"time\":"; //8
|
log_snapshot_v2 += ",\"time\":"; //8
|
||||||
log_snapshot_v2 += std::to_string(data[i].time); //10?
|
log_snapshot_v2 += std::to_string(data[i].time); //10?
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue