Skip to content

Commit

Permalink
fix check
Browse files Browse the repository at this point in the history
  • Loading branch information
aroralanuk committed Jan 11, 2025
1 parent 49e08a0 commit dde2523
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions rust/main/agents/relayer/src/msg/processor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -742,6 +742,10 @@ mod test {
/// Retrieve the nonce of the highest processed message we're aware of
fn retrieve_highest_seen_message_nonce_number(&self) -> DbResult<Option<u32>>;

fn store_highest_seen_tree_index(&self, index: &u32) -> DbResult<()>;

fn retrieve_highest_seen_tree_index(&self) -> DbResult<Option<u32>>;

}
}

Expand Down
3 changes: 2 additions & 1 deletion rust/main/agents/validator/src/submit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,8 @@ mod test {
) -> DbResult<Option<u64>>;
fn store_highest_seen_message_nonce_number(&self, nonce: &u32) -> DbResult<()>;
fn retrieve_highest_seen_message_nonce_number(&self) -> DbResult<Option<u32>>;

fn store_highest_seen_tree_index(&self, index: &u32) -> DbResult<()>;
fn retrieve_highest_seen_tree_index(&self) -> DbResult<Option<u32>>;
}
}

Expand Down

0 comments on commit dde2523

Please sign in to comment.