Skip to content

Commit e2e8f15

Browse files
authored
Merge branch 'develop' into docs/update-changelog-with-new-clarity-endpoints
2 parents 31073de + 29db45f commit e2e8f15

File tree

2 files changed

+1
-11
lines changed

2 files changed

+1
-11
lines changed

stacks-signer/src/signerdb.rs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -871,16 +871,6 @@ where
871871
.map_err(DBError::SerializationError)
872872
}
873873

874-
#[cfg(test)]
875-
pub fn test_signer_db(db_path: &str) -> SignerDb {
876-
use std::fs;
877-
878-
if fs::metadata(db_path).is_ok() {
879-
fs::remove_file(db_path).unwrap();
880-
}
881-
SignerDb::new(db_path).expect("Failed to create signer db")
882-
}
883-
884874
#[cfg(test)]
885875
mod tests {
886876
use std::fs;

stackslib/src/chainstate/burn/db/sortdb.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3986,7 +3986,7 @@ impl<'a> SortitionDBConn<'a> {
39863986
tip,
39873987
reward_cycle_id,
39883988
)?;
3989-
info!("Fetching preprocessed reward set";
3989+
debug!("Fetching preprocessed reward set";
39903990
"tip_sortition_id" => %tip,
39913991
"reward_cycle_id" => reward_cycle_id,
39923992
"prepare_phase_start_sortition_id" => %first_sortition,

0 commit comments

Comments
 (0)