chore: secure-trade closeout - strip [trade] gate probes, roadmap ledger

The two-client user gate PASSED 2026-08-14 (open both ways, stage with
the retail trading marker, accept/decline, executed swap, Clear All,
cancel text). Every TEMPORARY [trade] probe line from gate rounds 1-2 is
stripped (ItemInteractionController, SelectionInteractionController,
SecureTradeUiController, LiveSessionCommandRouter, WorldSession,
RuntimeTradeState). Roadmap gains the shipped-trade ledger row.

Suites after strip: App 4,992/3, Runtime 1,626 - green.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Erik 2026-08-14 12:48:31 +02:00
parent be3e617a2b
commit 0f15c74147
7 changed files with 3 additions and 33 deletions

View file

@ -229,14 +229,8 @@ internal sealed class LiveSessionCommandRouter : ILiveSessionCommandRouting
commands.Register<AddFriendRuntimeCmd>(
command => SendIfActive(() => bindings.AddFriend(command.Name)));
commands.Register<OpenTradeNegotiationsRuntimeCmd>(
command =>
{
bool sent = SendIfActive(() =>
bindings.OpenTradeNegotiations(command.PartnerGuid));
// TEMPORARY [trade] probe (2026-08-14 gate round 2).
Console.WriteLine(
$"[trade] open-cmd partner=0x{command.PartnerGuid:X8} sent={sent}");
});
command => SendIfActive(() =>
bindings.OpenTradeNegotiations(command.PartnerGuid)));
commands.Register<CloseTradeNegotiationsRuntimeCmd>(
_ => SendIfActive(bindings.CloseTradeNegotiations));
commands.Register<AddToTradeRuntimeCmd>(