Skip to content

Commit

Permalink
Merge pull request #5522 from stacks-network/chore/3.0.0.0.4_changelog
Browse files Browse the repository at this point in the history
Update changelogs for 3.0.0.0.4
  • Loading branch information
wileyj authored Dec 3, 2024
2 parents dbee3fa + ad7ac2b commit 5f54e64
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 11 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@ and this project adheres to the versioning scheme outlined in the [README.md](RE

### Changed

## [3.0.0.0.4]

### Added

### Changed

- Use the same burn view loader in both block validation and block processing

## [3.0.0.0.3]

Expand Down
8 changes: 8 additions & 0 deletions stacks-signer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@ and this project adheres to the versioning scheme outlined in the [README.md](RE

### Changed

## [3.0.0.0.4.0]

### Added

### Changed

- Use the same burn view loader in both block validation and block processing

## [3.0.0.0.3.0]

### Added
Expand Down
10 changes: 0 additions & 10 deletions stacks-signer/src/signerdb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -871,16 +871,6 @@ where
.map_err(DBError::SerializationError)
}

#[cfg(test)]
pub fn test_signer_db(db_path: &str) -> SignerDb {
use std::fs;

if fs::metadata(db_path).is_ok() {
fs::remove_file(db_path).unwrap();
}
SignerDb::new(db_path).expect("Failed to create signer db")
}

#[cfg(test)]
mod tests {
use std::fs;
Expand Down
2 changes: 1 addition & 1 deletion stackslib/src/chainstate/burn/db/sortdb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3986,7 +3986,7 @@ impl<'a> SortitionDBConn<'a> {
tip,
reward_cycle_id,
)?;
info!("Fetching preprocessed reward set";
debug!("Fetching preprocessed reward set";
"tip_sortition_id" => %tip,
"reward_cycle_id" => reward_cycle_id,
"prepare_phase_start_sortition_id" => %first_sortition,
Expand Down

0 comments on commit 5f54e64

Please sign in to comment.