From 441abf1e6a15a39f1ef7bf5e4ee2a4a43bff327b Mon Sep 17 00:00:00 2001
From: Joel Grunbaum <joelgrun@gmail.com>
Date: Thu, 20 Jan 2022 05:18:00 +0000
Subject: [PATCH] Added names and ready notice
---
json.cpp | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/json.cpp b/json.cpp
index d486ddc..3e1ad07 100644
--- a/json.cpp
+++ b/json.cpp
@@ -392,10 +392,10 @@
std::string RejectMessage::as_string()
{
- return "{\"type\": \"REJECT\", \"product\": \"" + this->product =
- "\", \"error\": \"" + this->error +
- "\", \"sequence\": " + std::to_string(this->sequence) +
- ", \"timestamp\": " + std::to_string(this->timestamp) + "}";
+ return "{\"type\": \"REJECT\", \"product\": \"" + this->product +
+ "\", \"error\": \"" + this->error +
+ "\", \"sequence\": " + std::to_string(this->sequence) +
+ ", \"timestamp\": " + std::to_string(this->timestamp) + "}";
}
TradeMessage::TradeMessage(MessageTypes type, std::string product, double price,
--
Gitblit v1.10.0