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 /src/consensus.cpp | |
parent | 5f00c067f863f812a740dc209b1fb829f04042eb (diff) |
fix signature verification bug
Diffstat (limited to 'src/consensus.cpp')
-rw-r--r-- | src/consensus.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/consensus.cpp b/src/consensus.cpp index 57152f0..ac7e56a 100644 --- a/src/consensus.cpp +++ b/src/consensus.cpp @@ -125,7 +125,7 @@ void HotStuffCore::on_propose(const std::vector<command_t> &cmds, } /* create the new block */ block_t bnew = storage->add_blk( - Block( + new Block( parents, cmds, p->height + 1, |