(uint256 bfee, uint256 sfee) = _getFees(_vestingPlan);
listings[_vestingPlan][listingId] = Listing({
		seller: msg.sender,
		total: _amount,
		balance: _amount,
		pricePerUnit: _price,
		listingType: _listingType,
		discountType: _discountType,
		discountPct: _discountPct,
		listTime: block.timestamp,
		whitelist: whitelistAddress,
		currency: _currency,
		minPurchaseAmt: _minPurchaseAmt,
		status: Status.LIST,
		vestingPlan: _vestingPlan,
+       buyerFee: bfee,
+       sellerFee: sfee
	});
	emit Listed(_vestingPlan, listingId);
}
