Skip to content

Commit

Permalink
fix(models): add new tag for OutMsgQueueUpdates
Browse files Browse the repository at this point in the history
  • Loading branch information
Rexagon committed Nov 25, 2024
1 parent 5563b69 commit 8ea6b16
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/models/block/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -699,11 +699,12 @@ impl<'a> Load<'a> for ValueFlow {
#[cfg(feature = "tycho")]
#[derive(Debug, Clone, Eq, PartialEq, Store, Load)]
#[cfg_attr(feature = "serde", derive(serde::Serialize))]
#[tlb(tag = "#1")]
#[tlb(tag = ["#1", "#2"])]
pub struct OutMsgQueueUpdates {
/// Hash of the serialized queue diff.
pub diff_hash: HashBytes,
/// The number of additional queue diffs, excluding the current one,
/// that may still be required by other shards.
#[tlb(since_tag = 1)]
pub tail_len: u32,
}

0 comments on commit 8ea6b16

Please sign in to comment.