diff options
author | Determinant <[email protected]> | 2018-08-07 20:41:53 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2018-08-07 20:41:53 -0400 |
commit | e41eef9d19fe3a3ab9b158c985b180a3f76f93f7 (patch) | |
tree | a850f333812383b192ff35d1fbf92fcd27ae512d /include/hotstuff/entity.h | |
parent | 062a1368abaa44585dcc4ea9b11e46708dbb418c (diff) |
fix bugs
Diffstat (limited to 'include/hotstuff/entity.h')
-rw-r--r-- | include/hotstuff/entity.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hotstuff/entity.h b/include/hotstuff/entity.h index ce7d9bf..29300a9 100644 --- a/include/hotstuff/entity.h +++ b/include/hotstuff/entity.h @@ -224,7 +224,7 @@ class EntityStorage { block_t add_blk(Block &&_blk, const ReplicaConfig &config) { if (!_blk.verify(config)) { - HOTSTUFF_LOG_WARN("block is invalid"); + HOTSTUFF_LOG_WARN("invalid %s", std::string(_blk).c_str()); return nullptr; } block_t blk = new Block(std::move(_blk)); |