mirror of
https://github.com/Expand-sys/CCash
synced 2026-03-22 20:47:10 +11:00
receiving output as "true" instead of "1"
This commit is contained in:
parent
dbe755da2b
commit
95c2d47216
1 changed files with 1 additions and 1 deletions
|
|
@ -64,7 +64,7 @@ std::string Log::GetLogsV2() noexcept
|
|||
log_snapshot_v2 += "{\"counterparty\":\""; //17
|
||||
log_snapshot_v2 += data[i].counterparty; //max_name_size?
|
||||
log_snapshot_v2 += "\",\"receiving\":"; //15
|
||||
log_snapshot_v2 += std::to_string(data[i].receiving); //4
|
||||
log_snapshot_v2 += (data[i].receiving)?"true":"false"; //4
|
||||
log_snapshot_v2 += ",\"amount\":"; //11
|
||||
log_snapshot_v2 += std::to_string(data[i].amount); //10?
|
||||
log_snapshot_v2 += ",\"time\":"; //8
|
||||
|
|
|
|||
Loading…
Reference in a new issue