From 259e3ebe2949a7b6de9ad5ff19ba2ed971b5c8b1 Mon Sep 17 00:00:00 2001 From: gamer147 Date: Tue, 9 Jun 2026 15:05:37 -0400 Subject: [PATCH] feat(2pick): tag finish-reward tx as ArenaTwoPickFinish for acquire history Co-Authored-By: Claude Sonnet 4.6 --- SVSim.EmulatedEntrypoint/Services/ArenaTwoPickService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SVSim.EmulatedEntrypoint/Services/ArenaTwoPickService.cs b/SVSim.EmulatedEntrypoint/Services/ArenaTwoPickService.cs index 29df13b..bac2a30 100644 --- a/SVSim.EmulatedEntrypoint/Services/ArenaTwoPickService.cs +++ b/SVSim.EmulatedEntrypoint/Services/ArenaTwoPickService.cs @@ -313,7 +313,7 @@ public class ArenaTwoPickService : IArenaTwoPickService var deltas = new List(); // Open inventory tx for grants. - await using var tx = await _inv.BeginAsync(viewerId); + await using var tx = await _inv.BeginAsync(viewerId, configure: cfg => cfg.Source = GrantSource.ArenaTwoPickFinish); // Group by RewardGroup, weighted-pick one row per group (Weight==0 excluded). foreach (var group in rewardRows.GroupBy(r => r.RewardGroup))