not needed

Signed-off-by: microwavedcola1 <microwavedcola@gmail.com>
This commit is contained in:
microwavedcola1 2022-01-28 10:42:38 +01:00
parent 57a1ce34a7
commit 0234e6874b
3 changed files with 3 additions and 6 deletions

View File

@ -9,8 +9,7 @@ pub struct IouInitGateway<'info> {
init,
seeds = [b"gateway".as_ref(), admin.key().as_ref()],
bump = gateway_bump,
payer = admin,
space = 8 + std::mem::size_of::<Gateway>(),
payer = admin
)]
pub gateway: Box<Account<'info, Gateway>>,

View File

@ -11,8 +11,7 @@ pub struct PoolCreatePool<'info> {
init,
seeds = [b"pool".as_ref(), admin.key().as_ref()],
bump = bump,
payer = admin,
space = 8 + std::mem::size_of::<Pool>(),
payer = admin
)]
pub pool: Box<Account<'info, Pool>>,

View File

@ -9,8 +9,7 @@ pub struct PoolCreatePoolAccount<'info> {
init,
seeds = [b"pool_account".as_ref(), pool.key().as_ref()],
bump = bump,
payer = user,
space = 8 + std::mem::size_of::<PoolAccount>(),
payer = user
)]
pub pool_account: Box<Account<'info, PoolAccount>>,