Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pox-locking/src/pox_2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ pub fn parse_pox_increase(result: &Value) -> std::result::Result<(PrincipalData,
/// - Returns Error::PoxExtendNotLocked if this function was called on an account
/// which isn't locked. This *should* have been checked by the PoX v2 contract,
/// so this should surface in a panic.
pub fn pox_lock_increase_v2(
fn pox_lock_increase_v2(
db: &mut ClarityDatabase,
principal: &PrincipalData,
new_total_locked: u128,
Expand Down Expand Up @@ -228,7 +228,7 @@ pub fn pox_lock_increase_v2(
/// - Returns Error::PoxExtendNotLocked if this function was called on an account
/// which isn't locked. This *should* have been checked by the PoX v2 contract,
/// so this should surface in a panic.
pub fn pox_lock_extend_v2(
fn pox_lock_extend_v2(
db: &mut ClarityDatabase,
principal: &PrincipalData,
unlock_burn_height: u64,
Expand Down
2 changes: 1 addition & 1 deletion pox-locking/src/pox_3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ pub(crate) fn is_read_only(func_name: &str) -> bool {
}

/// Lock up STX for PoX for a time. Does NOT touch the account nonce.
pub fn pox_lock_v3(
fn pox_lock_v3(
db: &mut ClarityDatabase,
principal: &PrincipalData,
lock_amount: u128,
Expand Down
Loading