Skip to content

Commit

Permalink
Add missing serialization of proposer_policies's timestamp in `base…
Browse files Browse the repository at this point in the history
…_digest`
  • Loading branch information
greg7mdp committed Apr 10, 2024
1 parent a3ce90c commit 64616c3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions libraries/chain/block_header_state.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ digest_type block_header_state::compute_base_digest() const {
fc::raw::pack( enc, *active_proposer_policy );

for (const auto& pp_pair : proposer_policies) {
fc::raw::pack( enc, pp_pair.first );
assert(pp_pair.second);
fc::raw::pack( enc, *pp_pair.second );
}
Expand Down

0 comments on commit 64616c3

Please sign in to comment.