Skip to content

Commit 2aed374

Browse files
committed
fix: changelog, remove bad comments
1 parent c5ca040 commit 2aed374

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ and this project adheres to the versioning scheme outlined in the [README.md](RE
99

1010
### Added
1111

12+
- The `BlockProposal` StackerDB message serialization struct now includes a `server_version` string, which represents the version of the node that the mienr is using. ([#5803](https://github.com/stacks-network/stacks-core/pull/5803))
13+
1214
### Changed
1315

1416
### Fixed

libsigner/src/events.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,6 @@ impl BlockProposalData {
141141
/// Serialize the "inner" block response data. Used to determine the bytes length of the serialized block response data
142142
fn inner_consensus_serialize<W: Write>(&self, fd: &mut W) -> Result<(), CodecError> {
143143
write_next(fd, &self.server_version.as_bytes().to_vec())?;
144-
// write_next(fd, &self.unknown_bytes)?;
145144
fd.write_all(&self.unknown_bytes)
146145
.map_err(CodecError::WriteError)?;
147146
Ok(())
@@ -708,7 +707,6 @@ mod tests {
708707
old_block_proposal.reward_cycle,
709708
new_block_proposal.reward_cycle
710709
);
711-
// assert_eq!();
712710
}
713711

714712
#[test]

libsigner/src/v0/messages.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -828,7 +828,6 @@ impl BlockResponseData {
828828
/// Serialize the "inner" block response data. Used to determine the bytes length of the serialized block response data
829829
fn inner_consensus_serialize<W: Write>(&self, fd: &mut W) -> Result<(), CodecError> {
830830
write_next(fd, &self.tenure_extend_timestamp)?;
831-
// write_next(fd, &self.unknown_bytes)?;
832831
fd.write_all(&self.unknown_bytes)
833832
.map_err(CodecError::WriteError)?;
834833
Ok(())

0 commit comments

Comments
 (0)