@@ -734,6 +734,7 @@ impl NakamotoBlockHeader {
734
734
write_next ( fd, & self . tx_merkle_root ) ?;
735
735
write_next ( fd, & self . state_index_root ) ?;
736
736
write_next ( fd, & self . timestamp ) ?;
737
+ write_next ( fd, & self . pox_treatment ) ?;
737
738
Ok ( Sha512Trunc256Sum :: from_hasher ( hasher) )
738
739
}
739
740
@@ -1876,7 +1877,7 @@ impl NakamotoChainState {
1876
1877
"stacks_block_id" => %next_ready_block. header. block_id( ) ,
1877
1878
"parent_block_id" => %next_ready_block. header. parent_block_id
1878
1879
) ;
1879
- ChainstateError :: InvalidStacksBlock ( "Failed to load burn view of parent block ID" . into ( ) )
1880
+ ChainstateError :: InvalidStacksBlock ( "Failed to load burn view of parent block ID" . into ( ) )
1880
1881
} ) ?;
1881
1882
let handle = sort_db. index_handle_at_ch ( & tenure_change. burn_view_consensus_hash ) ?;
1882
1883
let connected_sort_id = get_ancestor_sort_id ( & handle, parent_burn_view_sn. block_height , & handle. context . chain_tip ) ?
@@ -1888,7 +1889,7 @@ impl NakamotoChainState {
1888
1889
"stacks_block_id" => %next_ready_block. header. block_id( ) ,
1889
1890
"parent_block_id" => %next_ready_block. header. parent_block_id
1890
1891
) ;
1891
- ChainstateError :: InvalidStacksBlock ( "Failed to load burn view of parent block ID" . into ( ) )
1892
+ ChainstateError :: InvalidStacksBlock ( "Failed to load burn view of parent block ID" . into ( ) )
1892
1893
} ) ?;
1893
1894
if connected_sort_id != parent_burn_view_sn. sortition_id {
1894
1895
warn ! (
0 commit comments