diff --git a/bouncer/shared/create_lp_pool.ts b/bouncer/shared/create_lp_pool.ts index a810af1d26..64604eeaac 100644 --- a/bouncer/shared/create_lp_pool.ts +++ b/bouncer/shared/create_lp_pool.ts @@ -23,7 +23,7 @@ export async function createLpPool(ccy: Asset, initialPrice: number) { chainflip, (event) => event.data.pairAsset.toUpperCase() === ccy, ); - const extrinsic = chainflip.tx.liquidityPools.newPool('usdc', ccy.toLowerCase(), 0, price); + const extrinsic = chainflip.tx.liquidityPools.newPool('usdc', ccy.toLowerCase(), 20, price); await submitGovernanceExtrinsic(extrinsic); await poolCreatedEvent; }