We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e799e3 commit 3fac5c5Copy full SHA for 3fac5c5
program/src/extension/confidential_mint_burn/mod.rs
@@ -7,14 +7,6 @@ use {
7
},
8
};
9
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
18
/// Confidential Mint-Burn Extension instructions
19
pub mod instruction;
20
0 commit comments