function withdrawFees() external override {
    uint256 tempFees = fees;
    fees = 0;
    tvl = tvl - tempFees;

    // Withdraw from the account
    IERC20(tracerQuoteToken).transfer(feeReceiver, tempFees);
    emit FeeWithdrawn(feeReceiver, tempFees);
}
