diff options
author | Determinant <[email protected]> | 2018-08-01 13:31:02 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2018-08-01 13:31:02 -0400 |
commit | 56a5a5570055208b5b791d0e11a49cf43a4a332e (patch) | |
tree | db5dff2b41ab72dd69a188943f551b3fb331c75c /src/hotstuff.cpp | |
parent | 207f82c78270ab7d3dbdd84c0b90aed1d5060b00 (diff) |
...
Diffstat (limited to 'src/hotstuff.cpp')
-rw-r--r-- | src/hotstuff.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/hotstuff.cpp b/src/hotstuff.cpp index abd5116..9a56626 100644 --- a/src/hotstuff.cpp +++ b/src/hotstuff.cpp @@ -233,8 +233,8 @@ promise_t HotStuffBase::async_deliver_blk(const uint256_t &blk_hash, return static_cast<promise_t &>(pm); } -void HotStuffBase::propose_handler(MsgPropose &&msg, conn_t conn) { - const NetAddr &peer = conn->get_peer(); +void HotStuffBase::propose_handler(MsgPropose &&msg, Conn &conn) { + const NetAddr &peer = conn.get_peer(); msg.postponed_parse(this); auto &prop = msg.proposal; block_t blk = prop.blk; @@ -247,8 +247,8 @@ void HotStuffBase::propose_handler(MsgPropose &&msg, conn_t conn) { }); } -void HotStuffBase::vote_handler(MsgVote &&msg, conn_t conn) { - const NetAddr &peer = conn->get_peer(); +void HotStuffBase::vote_handler(MsgVote &&msg, Conn &conn) { + const NetAddr &peer = conn.get_peer(); msg.postponed_parse(this); auto &vote = msg.vote; promise::all(std::vector<promise_t>{ @@ -259,8 +259,8 @@ void HotStuffBase::vote_handler(MsgVote &&msg, conn_t conn) { }); } -void HotStuffBase::req_blk_handler(MsgReqBlock &&msg, conn_t conn) { - const NetAddr replica = conn->get_peer(); +void HotStuffBase::req_blk_handler(MsgReqBlock &&msg, Conn &conn) { + const NetAddr replica = conn.get_peer(); auto &blk_hashes = msg.blk_hashes; std::vector<promise_t> pms; for (const auto &h: blk_hashes) @@ -276,7 +276,7 @@ void HotStuffBase::req_blk_handler(MsgReqBlock &&msg, conn_t conn) { }); } -void HotStuffBase::resp_blk_handler(MsgRespBlock &&msg, conn_t) { +void HotStuffBase::resp_blk_handler(MsgRespBlock &&msg, Conn &) { msg.postponed_parse(this); for (const auto &blk: msg.blks) if (blk) on_fetch_blk(blk); |