Skip to content

Commit 2276da9

Browse files
committed
fix trailing whitespace
1 parent 3fc0943 commit 2276da9

File tree

3 files changed

+5
-5
lines changed
  • tokens
    • pda-mint-authority/anchor/programs/token-minter/src/instructions
    • spl-token-minter/anchor/programs/spl-token-minter/src/instructions
    • transfer-tokens/anchor/programs/transfer-tokens/src/instructions

3 files changed

+5
-5
lines changed

tokens/pda-mint-authority/anchor/programs/token-minter/src/instructions/create.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ pub struct CreateToken<'info> {
2424
mint::decimals = 9,
2525
mint::authority = mint_account.key(),
2626
mint::freeze_authority = mint_account.key(),
27-
27+
2828
)]
2929
pub mint_account: Account<'info, Mint>,
3030

tokens/spl-token-minter/anchor/programs/spl-token-minter/src/instructions/create.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ pub struct CreateToken<'info> {
1818
mint::decimals = 9,
1919
mint::authority = payer.key(),
2020
mint::freeze_authority = payer.key(),
21-
21+
2222
)]
2323
pub mint_account: Account<'info, Mint>,
2424
/// CHECK: Address validated using constraint
@@ -50,7 +50,7 @@ pub fn create_token(
5050
CreateMetadataAccountsV3 {
5151
metadata: ctx.accounts.metadata_account.to_account_info(),
5252
mint: ctx.accounts.mint_account.to_account_info(),
53-
mint_authority: ctx.accounts.payer.to_account_info(),
53+
mint_authority: ctx.accounts.payer.to_account_info(),
5454
update_authority: ctx.accounts.payer.to_account_info(),
5555
payer: ctx.accounts.payer.to_account_info(),
5656
system_program: ctx.accounts.system_program.to_account_info(),

tokens/transfer-tokens/anchor/programs/transfer-tokens/src/instructions/create.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ pub struct CreateToken<'info> {
1818
mint::decimals = 9,
1919
mint::authority = payer.key(),
2020
mint::freeze_authority = payer.key(),
21-
21+
2222
)]
2323
pub mint_account: Account<'info, Mint>,
2424

@@ -51,7 +51,7 @@ pub fn create_token(
5151
CreateMetadataAccountsV3 {
5252
metadata: ctx.accounts.metadata_account.to_account_info(),
5353
mint: ctx.accounts.mint_account.to_account_info(),
54-
mint_authority: ctx.accounts.payer.to_account_info(),
54+
mint_authority: ctx.accounts.payer.to_account_info(),
5555
update_authority: ctx.accounts.payer.to_account_info(),
5656
payer: ctx.accounts.payer.to_account_info(),
5757
system_program: ctx.accounts.system_program.to_account_info(),

0 commit comments

Comments
 (0)