diff options
author | Determinant <[email protected]> | 2018-08-28 22:25:28 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2018-08-28 22:25:28 -0400 |
commit | 17f7fd821cf71717a158e2c38699baa6ab2f2af8 (patch) | |
tree | cf390690dcefff12037c02abf73670875c1773f1 /src | |
parent | 889d42f00f7f546322965a48e627e0ac76766002 (diff) |
...
Diffstat (limited to 'src')
-rw-r--r-- | src/hotstuff.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hotstuff.cpp b/src/hotstuff.cpp index e1e2f81..e235bd8 100644 --- a/src/hotstuff.cpp +++ b/src/hotstuff.cpp @@ -25,7 +25,7 @@ void MsgVote::postponed_parse(HotStuffCore *hsc) { const opcode_t MsgReqBlock::opcode; MsgReqBlock::MsgReqBlock(const std::vector<uint256_t> &blk_hashes) { - serialized << (uint32_t)htole(blk_hashes.size()); + serialized << htole((uint32_t)blk_hashes.size()); for (const auto &h: blk_hashes) serialized << h; } |