Skip to content

Commit

Permalink
Common types: Fix default value for Db
Browse files Browse the repository at this point in the history
was 1, now is 0 (regression)
  • Loading branch information
helgoboss committed Feb 22, 2024
1 parent 0da585d commit 6c0d9d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main/common-types/src/db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ use nutype::nutype;
Serialize,
Deserialize
),
default = 1.0
default = 0.0
)]
pub struct Db(f64);

Expand Down

0 comments on commit 6c0d9d7

Please sign in to comment.