aboutsummaryrefslogtreecommitdiff
path: root/src/hotstuff.cpp
diff options
context:
space:
mode:
authorDeterminant <ted.sybil@gmail.com>2019-08-30 20:45:38 -0400
committerDeterminant <ted.sybil@gmail.com>2019-08-30 20:45:38 -0400
commit5ffbe0da60782ea2aa7f2fd872b8880333620133 (patch)
tree89c8b99426d5820ae07539578b3f97e3a6a051ca /src/hotstuff.cpp
parent9b2128d042187b510b298cfbd724646b0300097e (diff)
parent870d09e53d93eee04e06fd225bfe4b124b7610aa (diff)
Merge branch 'master' of github.com:hot-stuff/libhotstuff
Diffstat (limited to 'src/hotstuff.cpp')
-rw-r--r--src/hotstuff.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hotstuff.cpp b/src/hotstuff.cpp
index 5ae0fe6..b584af0 100644
--- a/src/hotstuff.cpp
+++ b/src/hotstuff.cpp
@@ -184,7 +184,7 @@ promise_t HotStuffBase::async_deliver_blk(const uint256_t &blk_hash,
for (const auto &phash: blk->get_parent_hashes())
pms.push_back(async_deliver_blk(phash, replica_id));
if (blk != get_genesis())
- pms.push_back(blk->verify(get_config(), vpool));
+ pms.push_back(blk->verify(this, vpool));
promise::all(pms).then([this, blk]() {
on_deliver_blk(blk);
});