#[account( init, seeds = [ AMM_CONFIG_SEED.as_bytes() ], bump, payer = admin, space = 8 + AmmConfig::INIT_SPACE, )] pub amm_config: Account<'info, AmmConfig>,
as shown here, the seed is constant , but the program uses a bump which varies to get a valid PDA address , so if I called this instruction to create this account amm_config
multiple times , will it fail or success ??
The PDA will be created with the same program ID and the same seed; will it fail or pass?