Skip to content

Commit f611151

Browse files
committed
verified technical requirements and resolved warnings
1 parent c4a1126 commit f611151

File tree

1 file changed

+5
-5
lines changed
  • tokens/spl-token-minter/poseidon/spl-token-minter/programs/spl-token-minter/src

1 file changed

+5
-5
lines changed

tokens/spl-token-minter/poseidon/spl-token-minter/programs/spl-token-minter/src/lib.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
use anchor_lang::prelude::*;
22
use anchor_spl::{
33
associated_token::AssociatedToken,
4-
token::{Token, mint_to, TokenAccount, Mint, MintTo},
4+
token::{mint_to, Mint, MintTo, Token, TokenAccount},
55
};
66
declare_id!("CSi4VcU9g99HKSodPV3MJvweoEAuaqWqgEC3jvdHieDG");
77
#[program]
88
pub mod spl_token_minter {
99
use super::*;
1010
pub fn create_token_mint(
11-
ctx: Context<CreateTokenMintContext>,
12-
decimals: u8,
13-
freeze_authority: Pubkey,
11+
_ctx: Context<CreateTokenMintContext>,
12+
_decimals: u8,
13+
_freeze_authority: Pubkey,
1414
) -> Result<()> {
15-
// Note: Initialization for mint handled manually
15+
// Note: Initialization for mint handled manually
1616
// As Poseidon's transpiler does not support initializeMint yet.
1717

1818
Ok(())

0 commit comments

Comments
 (0)