We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e4a06d commit dec1053Copy full SHA for dec1053
blsforme/src/entry.rs
@@ -27,7 +27,7 @@ pub struct Entry<'a> {
27
pub(crate) cmdline: Vec<CmdlineEntry>,
28
29
/// Unique state ID for this entry
30
- pub(crate) state_id: Option<u64>,
+ pub(crate) state_id: Option<i32>,
31
}
32
33
impl<'a> Entry<'a> {
@@ -74,7 +74,7 @@ impl<'a> Entry<'a> {
74
75
/// With the given state ID
76
/// Used by moss to link to the unique transaction ID on disk
77
- pub fn with_state_id(self, state_id: u64) -> Self {
+ pub fn with_state_id(self, state_id: i32) -> Self {
78
Self {
79
state_id: Some(state_id),
80
..self
0 commit comments