diff options
author | Determinant <[email protected]> | 2018-07-27 17:33:23 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2018-07-27 17:33:23 -0400 |
commit | ec6a1f84324faf8e7c92f32137464db57410f58a (patch) | |
tree | 10a0f289a255eb5c78be2cb4a5e2702fc7995182 /include/hotstuff/consensus.h | |
parent | 5f00c067f863f812a740dc209b1fb829f04042eb (diff) |
fix signature verification bug
Diffstat (limited to 'include/hotstuff/consensus.h')
-rw-r--r-- | include/hotstuff/consensus.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hotstuff/consensus.h b/include/hotstuff/consensus.h index 6de6bd3..cb86bf6 100644 --- a/include/hotstuff/consensus.h +++ b/include/hotstuff/consensus.h @@ -166,7 +166,7 @@ struct Proposal: public Serializable { >> bqc_hash; Block _blk; _blk.unserialize(s, hsc); - blk = hsc->storage->add_blk(std::move(_blk)); + blk = hsc->storage->add_blk(std::move(_blk), hsc->get_config()); } operator std::string () const { |