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
11
11
12
12
### Changed
13
13
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
14
21
15
22
## [ 3.0.0.0.3]
16
23
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
11
11
12
12
### Changed
13
13
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
+
14
22
## [ 3.0.0.0.3.0]
15
23
16
24
### Added
Original file line number Diff line number Diff line change @@ -871,16 +871,6 @@ where
871
871
. map_err ( DBError :: SerializationError )
872
872
}
873
873
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
-
884
874
#[ cfg( test) ]
885
875
mod tests {
886
876
use std:: fs;
Original file line number Diff line number Diff line change @@ -3986,7 +3986,7 @@ impl<'a> SortitionDBConn<'a> {
3986
3986
tip,
3987
3987
reward_cycle_id,
3988
3988
) ?;
3989
- info ! ( "Fetching preprocessed reward set" ;
3989
+ debug ! ( "Fetching preprocessed reward set" ;
3990
3990
"tip_sortition_id" => %tip,
3991
3991
"reward_cycle_id" => reward_cycle_id,
3992
3992
"prepare_phase_start_sortition_id" => %first_sortition,
You can’t perform that action at this time.
0 commit comments