File tree Expand file tree Collapse file tree 4 files changed +16
-11
lines changed
stackslib/src/chainstate/burn/db Expand file tree Collapse file tree 4 files changed +16
-11
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,13 @@ and this project adheres to the versioning scheme outlined in the [README.md](RE
1111
1212### Changed
1313
14+ ## [ 3.0.0.0.4]
15+
16+ ### Added
17+
18+ ### Changed
19+
20+ - Use the same burn view loader in both block validation and block processing
1421
1522## [ 3.0.0.0.3]
1623
Original file line number Diff line number Diff line change @@ -11,6 +11,14 @@ and this project adheres to the versioning scheme outlined in the [README.md](RE
1111
1212### Changed
1313
14+ ## [ 3.0.0.0.4.0]
15+
16+ ### Added
17+
18+ ### Changed
19+
20+ - Use the same burn view loader in both block validation and block processing
21+
1422## [ 3.0.0.0.3.0]
1523
1624### Added
Original file line number Diff line number Diff 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) ]
885875mod tests {
886876 use std:: fs;
Original file line number Diff line number Diff 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,
You can’t perform that action at this time.
0 commit comments