mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2024-10-01 01:45:40 -04:00
Delete unused code
This commit is contained in:
parent
014388bfaa
commit
e79ac4563b
@ -17,18 +17,6 @@ impl From<BlockHeight> for u32 {
|
||||
}
|
||||
}
|
||||
|
||||
impl BlockHeight {
|
||||
pub const fn new(block_height: u32) -> Self {
|
||||
Self(block_height)
|
||||
}
|
||||
pub const fn checked_sub(self, rhs: Self) -> Option<Self> {
|
||||
match self.0.checked_sub(rhs.0) {
|
||||
Some(result) => Some(BlockHeight(result)),
|
||||
None => None,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl TryFrom<HeaderNotification> for BlockHeight {
|
||||
type Error = anyhow::Error;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user