SON275 - Fix Indentation

This commit is contained in:
satyakoneru 2020-03-11 00:46:09 +00:00
parent c2d5674924
commit 11e6092e81

View file

@ -544,13 +544,12 @@ void zmq_listener::handle_zmq() {
socket.connect("tcp://" + ip + ":" + std::to_string(zmq_port));
while (true) {
try{
try {
auto msg = receive_multipart();
const auto header = std::string(static_cast<char *>(msg[0].data()), msg[0].size());
const auto block_hash = boost::algorithm::hex(std::string(static_cast<char *>(msg[1].data()), msg[1].size()));
event_received(block_hash);
} catch (zmq::error_t& e){
} catch (zmq::error_t& e) {
}
}
}