Skip to content

Commit

Permalink
Updating a minting limit to max unsigned int 64
Browse files Browse the repository at this point in the history
  • Loading branch information
dimpar committed Aug 11, 2023
1 parent 3c56781 commit c77c1ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cross-chain/solana/deploy/init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ async function run(): Promise<void> {
wormholeGatewayProgram.programId
)[0]

const mintingLimit = 10000 // Arbitrary big number of TBTC
const mintingLimit = "18446744073709551615" // Max u64
let WRAPPED_TBTC = consts.WRAPPED_TBTC_MINT_TESTNET
if (process.env.CLUSTER === "mainnet-beta") {
WRAPPED_TBTC = consts.WRAPPED_TBTC_MINT_MAINNET
Expand Down

0 comments on commit c77c1ba

Please sign in to comment.