SKALE-3951 remove debug

parent 34f8be85
...@@ -134,9 +134,6 @@ void ZMQClient::verifySig(EVP_PKEY* _pubkey, const string& _str, const string& _ ...@@ -134,9 +134,6 @@ void ZMQClient::verifySig(EVP_PKEY* _pubkey, const string& _str, const string& _
auto msgToSign = std::regex_replace(_str, r, ""); auto msgToSign = std::regex_replace(_str, r, "");
vector<uint8_t> binSig(256,0); vector<uint8_t> binSig(256,0);
std::cout << "VERIFYING SIG: " << _str << '\n' << msgToSign << std::endl;
// std::cout << signString(pkey, _str) << std::endl;
uint64_t binLen = 0; uint64_t binLen = 0;
......
...@@ -33,7 +33,6 @@ ...@@ -33,7 +33,6 @@
#include "RspMessage.h" #include "RspMessage.h"
#include "ZMQMessage.h" #include "ZMQMessage.h"
uint64_t ZMQMessage::getInt64Rapid(const char *_name) { uint64_t ZMQMessage::getInt64Rapid(const char *_name) {
CHECK_STATE(_name); CHECK_STATE(_name);
CHECK_STATE(d->HasMember(_name)); CHECK_STATE(d->HasMember(_name));
......
...@@ -174,7 +174,6 @@ void ZMQServer::doOneServerLoop() { ...@@ -174,7 +174,6 @@ void ZMQServer::doOneServerLoop() {
} }
stringToParse = string((char *) reqMsg.data(), reqMsg.size()); stringToParse = string((char *) reqMsg.data(), reqMsg.size());
std::cout << "RECEIVED MSG: " << stringToParse << std::endl;
CHECK_STATE(stringToParse.front() == '{') CHECK_STATE(stringToParse.front() == '{')
CHECK_STATE(stringToParse.back() == '}') CHECK_STATE(stringToParse.back() == '}')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment