diff options
author | Determinant <[email protected]> | 2018-08-17 00:37:49 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2018-08-17 00:37:49 -0400 |
commit | b10303fc8a043c6aef72f1437731835cdfb535c2 (patch) | |
tree | c3691f2f1df3dec442b1afe8ad7749b3cc4a889d /include/hotstuff/consensus.h | |
parent | 20500e74613f69f937e404cbabb3982da3b72881 (diff) |
...
Diffstat (limited to 'include/hotstuff/consensus.h')
-rw-r--r-- | include/hotstuff/consensus.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/hotstuff/consensus.h b/include/hotstuff/consensus.h index d27f8c5..65ffff2 100644 --- a/include/hotstuff/consensus.h +++ b/include/hotstuff/consensus.h @@ -139,7 +139,8 @@ class HotStuffCore { promise_t async_bqc_update(); /* Other useful functions */ - block_t get_genesis() { return b0; } + const block_t &get_genesis() { return b0; } + const block_t &get_bqc() { return bqc; } const ReplicaConfig &get_config() { return config; } ReplicaID get_id() const { return id; } const std::set<block_t, BlockHeightCmp> get_tails() const { return tails; } |