From 6ec6a9c3fc6f7f4df9b2b1f5023505abbc376765 Mon Sep 17 00:00:00 2001 From: gamer147 Date: Tue, 9 Jun 2026 15:08:03 -0400 Subject: [PATCH] feat(spot-card): tag exchange tx as GachaPointExchange for acquire history Co-Authored-By: Claude Sonnet 4.6 --- .../Controllers/SpotCardExchangeController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SVSim.EmulatedEntrypoint/Controllers/SpotCardExchangeController.cs b/SVSim.EmulatedEntrypoint/Controllers/SpotCardExchangeController.cs index 3d17112..7cc91c1 100644 --- a/SVSim.EmulatedEntrypoint/Controllers/SpotCardExchangeController.cs +++ b/SVSim.EmulatedEntrypoint/Controllers/SpotCardExchangeController.cs @@ -124,7 +124,7 @@ public class SpotCardExchangeController : SVSimController return BadRequest(new { error = "pre_release_limit_reached" }); } - await using var tx = await _inv.BeginAsync(viewerId); + await using var tx = await _inv.BeginAsync(viewerId, configure: cfg => cfg.Source = GrantSource.GachaPointExchange); var rewardList = new List();