diff options
m--------- | salticidae | 0 | ||||
-rw-r--r-- | src/hotstuff_client.cpp | 6 |
2 files changed, 3 insertions, 3 deletions
diff --git a/salticidae b/salticidae -Subproject f40ee925f06587399e3a1b755ede2ea87a7cc67 +Subproject 0eea9ddc7cfb2820295dd87aed3dc911a100ecd diff --git a/src/hotstuff_client.cpp b/src/hotstuff_client.cpp index d8a6087..f030751 100644 --- a/src/hotstuff_client.cpp +++ b/src/hotstuff_client.cpp @@ -64,9 +64,9 @@ void try_send() { while (waiting.size() < max_async_num && max_iter_num) { auto cmd = new CommandDummy(cid, cnt++); - //mn.send_msg(MsgReqCmd(*cmd), *conns.at(proposer)); - MsgReqCmd msg(*cmd); - for (auto &p: conns) mn.send_msg(msg, *(p.second)); + mn.send_msg(MsgReqCmd(*cmd), *conns.at(proposer)); + //MsgReqCmd msg(*cmd); + //for (auto &p: conns) mn.send_msg(msg, *(p.second)); #ifndef HOTSTUFF_ENABLE_BENCHMARK HOTSTUFF_LOG_INFO("send new cmd %.10s", get_hex(cmd->get_hash()).c_str()); |