diff --git a/common/mixnet-contract/src/delegation.rs b/common/mixnet-contract/src/delegation.rs index 023472bb02..f0efe37297 100644 --- a/common/mixnet-contract/src/delegation.rs +++ b/common/mixnet-contract/src/delegation.rs @@ -45,6 +45,10 @@ impl Delegation { pub fn owner(&self) -> Addr { self.owner.clone() } + + pub fn block_height(&self) -> u64 { + self.block_height + } } impl Display for Delegation {