Skip to content

Commit

Permalink
Amend
Browse files Browse the repository at this point in the history
  • Loading branch information
raphjaph committed Nov 22, 2024
1 parent be887e1 commit 7e1d0fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/ordinals/src/rune.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use super::*;
pub struct Rune(pub u128);

impl Rune {
pub const RESERVED: u128 = 6402364363415443603228541259936211926;
const RESERVED: u128 = 6402364363415443603228541259936211926;

const UNLOCKED: usize = 12;

Expand Down Expand Up @@ -70,7 +70,7 @@ impl Rune {
}

if offset >= end {
return Rune(Self::STEPS[0]);
return Rune(0);
}

let progress = offset.saturating_sub(start);
Expand Down

0 comments on commit 7e1d0fc

Please sign in to comment.