Skip to content

Commit

Permalink
Update utils.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
zeevick10 authored Dec 18, 2024
1 parent 125aa1a commit 3e27b41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fixed-price-sale/program/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use anchor_lang::{
use mpl_token_metadata::state::EDITION_MARKER_BIT_SIZE;

pub const NAME_MAX_LEN: usize = 40; // max len of a string buffer in bytes
pub const NAME_DEFAULT_SIZE: usize = 4 + NAME_MAX_LEN; // max lenght of serialized string (str_len + <buffer>)
pub const NAME_DEFAULT_SIZE: usize = 4 + NAME_MAX_LEN; // max length of serialized string (str_len + <buffer>)
pub const DESCRIPTION_MAX_LEN: usize = 60;
pub const DESCRIPTION_DEFAULT_SIZE: usize = 4 + DESCRIPTION_MAX_LEN;
pub const HOLDER_PREFIX: &str = "holder";
Expand Down

0 comments on commit 3e27b41

Please sign in to comment.