Skip to content

Commit

Permalink
Make max mint limit u64::MAX
Browse files Browse the repository at this point in the history
  • Loading branch information
casey committed Mar 18, 2024
1 parent f981d6d commit fbc1c06
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/runes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,9 @@ pub use {
};

pub const MAX_DIVISIBILITY: u8 = 38;
pub const MAX_LIMIT: u128 = 1 << 64;

const RESERVED: u128 = 6402364363415443603228541259936211926;
pub const MAX_LIMIT: u128 = u64::MAX as u128;
const MAGIC_NUMBER: opcodes::All = opcodes::all::OP_PUSHNUM_13;
const RESERVED: u128 = 6402364363415443603228541259936211926;

mod edict;
mod etching;
Expand Down

0 comments on commit fbc1c06

Please sign in to comment.