From 47722cfd574eb100d5d852f3ad421585d8795d22 Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Sat, 1 Nov 2025 12:52:34 +0800 Subject: [PATCH] :necktie: Adjust the thought wage --- DysonNetwork.Insight/Thought/ThoughtService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DysonNetwork.Insight/Thought/ThoughtService.cs b/DysonNetwork.Insight/Thought/ThoughtService.cs index 4f4ac01..e119bb1 100644 --- a/DysonNetwork.Insight/Thought/ThoughtService.cs +++ b/DysonNetwork.Insight/Thought/ThoughtService.cs @@ -134,7 +134,7 @@ public class ThoughtService( { var accountId = accountGroup.Key; var totalUnpaidTokens = accountGroup.Sum(s => s.TotalToken - s.PaidToken); - var cost = (long)Math.Ceiling(totalUnpaidTokens / 1000.0); + var cost = (long)Math.Ceiling(totalUnpaidTokens / 10.0); if (cost == 0) continue; @@ -145,7 +145,7 @@ public class ThoughtService( await paymentService.CreateTransactionWithAccountAsync( new CreateTransactionWithAccountRequest { - PayeeAccountId = accountId.ToString(), + PayerAccountId = accountId.ToString(), Currency = WalletCurrency.SourcePoint, Amount = cost.ToString(), Remarks = $"Wage for SN-chan on {date}",