Trying to work out why trading a UIA with market_fee_percent set to 30 (0.3%) doesn't actually deduct any fees?
get_asset METAFEES
{
  "id": "1.3.472",
  "symbol": "METAFEES",
  "precision": 6,
  "issuer": "1.2.32469",
  "options": {
    "max_supply": "100000000000000",
    "market_fee_percent": 30,
    "max_market_fee": "1000000000000000",
    "issuer_permissions": 79,
    "flags": 128,
    "core_exchange_rate": {
      "base": {
        "amount": 1,
        "asset_id": "1.3.0"
      },
      "quote": {
        "amount": 1000000,
        "asset_id": "1.3.472"
      }
    },
    "whitelist_authorities": [],
    "blacklist_authorities": [],
    "whitelist_markets": [],
    "blacklist_markets": [],
    "description": "",
    "extensions": []
  },
  "dynamic_asset_data_id": "2.3.472"
}
issuer_permissions has bit 1 set to deduct fees and the percentage is set correctly, but when traded no fees are actually deducted from either party?
get_object 2.3.472
[{
    "id": "2.3.472",
    "current_supply": 1100000,
    "confidential_supply": 0,
    "accumulated_fees": 0,
    "fee_pool": 120000
  }
]