diff options
author | Determinant <[email protected]> | 2018-07-19 20:07:16 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2018-07-19 20:07:16 -0400 |
commit | 928b2c1910bfe957a4cc31746aa395c9ed98006f (patch) | |
tree | 79429e7eebf4fe85e8aa5cfea1aaa741652fa3e2 /src/hotstuff_client.cpp | |
parent | 3c355d7f9e7b491b9fc5af4516286ab4100238c6 (diff) |
...
Diffstat (limited to 'src/hotstuff_client.cpp')
-rw-r--r-- | src/hotstuff_client.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/hotstuff_client.cpp b/src/hotstuff_client.cpp index 3931a0c..2fd36bd 100644 --- a/src/hotstuff_client.cpp +++ b/src/hotstuff_client.cpp @@ -37,12 +37,10 @@ struct Request { rid(rid), cmd(cmd) { et.start(); } }; -std::unordered_map<int, salticidae::RingBuffer> buffers; -std::unordered_map<const uint256_t, Request> waiting; -MsgNetwork<MsgClient> mn(eb, 10, 10, 4096); - std::unordered_map<ReplicaID, MsgNetwork<MsgClient>::conn_t> conns; +std::unordered_map<const uint256_t, Request> waiting; std::vector<NetAddr> replicas; +MsgNetwork<MsgClient> mn(eb, 10, 10, 4096); void set_proposer(ReplicaID rid) { proposer = rid; |