aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDeterminant <ted.sybil@gmail.com>2019-04-06 18:14:42 -0400
committerDeterminant <ted.sybil@gmail.com>2019-04-06 18:14:42 -0400
commit698a0373f7d72ce0ee0e557ed0352a8594a7a6b0 (patch)
tree8592a551efbc3e53901b08eb6ec842bae784ebdb /include
parent37f7812a240e419c9aaf39a6069d113cfb45be0b (diff)
...
Diffstat (limited to 'include')
-rw-r--r--include/hotstuff/hotstuff.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/include/hotstuff/hotstuff.h b/include/hotstuff/hotstuff.h
index f7acccc..10dcb84 100644
--- a/include/hotstuff/hotstuff.h
+++ b/include/hotstuff/hotstuff.h
@@ -140,7 +140,7 @@ class HotStuffBase: public HotStuffCore {
/** libevent handle */
EventContext ec;
VeriPool vpool;
- std::unordered_set<NetAddr> peers;
+ std::vector<NetAddr> peers;
private:
/** whether libevent handle is owned by itself */
@@ -212,8 +212,7 @@ class HotStuffBase: public HotStuffCore {
/* Submit the command to be decided. */
promise_t exec_command(uint256_t cmd);
- void add_replica(ReplicaID idx, const NetAddr &addr, pubkey_bt &&pub_key);
- void start(bool ec_loop = false);
+ void start(std::vector<std::pair<NetAddr, pubkey_bt>> &&replicas, bool ec_loop = false);
size_t size() const { return peers.size(); }
PaceMaker &get_pace_maker() { return *pmaker; }
@@ -279,9 +278,11 @@ class HotStuff: public HotStuffBase {
nworker,
netconfig) {}
- void add_replica(ReplicaID idx, const NetAddr &addr, const bytearray_t &pubkey_raw) {
- DataStream s(pubkey_raw);
- HotStuffBase::add_replica(idx, addr, new PubKeyType(pubkey_raw));
+ void start(const std::vector<std::pair<NetAddr, bytearray_t>> &replicas, bool ec_loop = false) {
+ std::vector<std::pair<NetAddr, pubkey_bt>> reps;
+ for (auto &r: replicas)
+ reps.push_back(std::make_pair(r.first, new PubKeyType(r.second)));
+ HotStuffBase::start(std::move(reps), ec_loop);
}
};