Joel Grunbaum
2022-01-19 0bef191acd5a77544852e6a3daae2df05bd34a31
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,