Skip to content

Commit

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

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

const RESERVED: u128 = 6402364363415443603228541259936211926;
const MAGIC_NUMBER: opcodes::All = opcodes::all::OP_PUSHNUM_13;
const RESERVED: u128 = 6402364363415443603228541259936211926;

mod edict;
mod etching;
Expand Down

0 comments on commit 634c426

Please sign in to comment.