Skip to content

Commit 3fac5c5

Browse files
[program] Remove unnecessary constants in the confidential mint burn extension (#171)
remove unnecessary constants
1 parent 2e799e3 commit 3fac5c5

File tree

1 file changed

+0
-8
lines changed
  • program/src/extension/confidential_mint_burn

1 file changed

+0
-8
lines changed

program/src/extension/confidential_mint_burn/mod.rs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,6 @@ use {
77
},
88
};
99

10-
/// Maximum bit length of any mint or burn amount
11-
///
12-
/// Any mint or burn amount must be less than `2^48`
13-
pub const MAXIMUM_DEPOSIT_TRANSFER_AMOUNT: u64 = (u16::MAX as u64) + (1 << 16) * (u32::MAX as u64);
14-
15-
/// Bit length of the low bits of pending balance plaintext
16-
pub const PENDING_BALANCE_LO_BIT_LENGTH: u32 = 16;
17-
1810
/// Confidential Mint-Burn Extension instructions
1911
pub mod instruction;
2012

0 commit comments

Comments
 (0)