Skip to content

Commit 2a4f766

Browse files
committed
Merge branch 'develop' of https://github.com/stacks-network/stacks-core into bug/validation-queue-race-condition
2 parents 8b7f9cf + 29db45f commit 2a4f766

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
@@ -883,16 +883,6 @@ where
883883
.map_err(DBError::SerializationError)
884884
}
885885

886-
#[cfg(test)]
887-
pub fn test_signer_db(db_path: &str) -> SignerDb {
888-
use std::fs;
889-
890-
if fs::metadata(db_path).is_ok() {
891-
fs::remove_file(db_path).unwrap();
892-
}
893-
SignerDb::new(db_path).expect("Failed to create signer db")
894-
}
895-
896886
#[cfg(test)]
897887
mod tests {
898888
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)