fix(market): stamp the player's persona as sellerName, not EA's house name

A card listed on the Transfer Market rendered correctly in the Transfer List but
pressing it opened NO Actions panel, so Remove / Re-list were unreachable. The one
field where our auction record diverged from the oracle was the seller: we stamped
"EASFC" while the oracle stamps the account's persona name. `fut_account.py`
annotates that very property as "Blaze PDTL.DSNM / LSX GetProfileResponse Persona /
UTAS sellerName", so EA's house name on the player's OWN listing is simply wrong,
whether or not it proves to be the gate on the Actions panel.

Introduces `non_economy::PERSONA_DISPLAY_NAME` as the single source of truth and
uses it both for the `account/sync` default (previously a bare "CAGE" literal) and
as the market seller. Every listing in this store is the player's own -- there is no
NPC seller in a single-account emulator -- so the fallback is the player.

Also strengthens the differential: it compared only auctionInfo LENGTH and
tradeState, so it was structurally blind to this. It now compares the record key
set and each shared field against the live Python oracle, asserts the seller is the
persona rather than EA, and asserts itemData is the full card rather than a stub.

That strengthened comparison passes against the real oracle subprocess, which
establishes two things: our record's key set is IDENTICAL to the oracle's (we are
missing no field relative to it), and sellerName was the only divergence.

NOTE the limit of that evidence: the oracle's own Transfer List remove flow has
never been confirmed against a real client either (the only live datapoint is a
counts-tile bug), so parity is necessary but may not be sufficient. If the client
still offers no dialog, the missing field is missing on BOTH sides and must come
from client instrumentation, not from the oracle.

14 targets green, clippy clean. Deployed and verified live: sellerName='CAGE',
listing intact, coins unchanged.
This commit is contained in:
funman300
2026-08-17 18:29:19 +00:00
parent ae5feb05b7
commit 3cd31c4322
3 changed files with 70 additions and 2 deletions
+10 -1
View File
@@ -28,6 +28,7 @@ use serde_json::{json, Value};
use openfut_adapter_fifa17::fut::entities::ReverseEntityResolver;
use openfut_adapter_fifa17::fut::item::{shape_item, ItemIdentityResolver};
use openfut_adapter_fifa17::fut::non_economy;
use openfut_adapter_fifa17::fut::squad::SquadWireResolver;
use crate::economy_store::OwnedItemLookup;
@@ -120,7 +121,15 @@ fn auction_record_as(l: &Listing, item_state: &str) -> Value {
"currentBid": current_bid,
"bidState": bid_state,
"expires": 3600,
"sellerName": l.owner.clone().unwrap_or_else(|| "EASFC".to_string()),
// Every listing in this store is the player's OWN (there is no NPC seller
// in a single-account emulator), so the seller defaults to the player's
// persona name exactly as the oracle stamps it. This is what lets the
// client offer Remove / Re-list on a transfer-pile row; EA's house name
// here silently makes the player's own listing un-actionable.
"sellerName": l
.owner
.clone()
.unwrap_or_else(|| non_economy::PERSONA_DISPLAY_NAME.to_string()),
"sellerEstablished": 1,
"watched": false,
"coinsProcessed": 0,