Fix update agent save + revert market in redis

This commit is contained in:
2025-10-08 21:32:48 +07:00
parent fa160e2d1b
commit ffb98fe359
7 changed files with 100 additions and 117 deletions

View File

@@ -61,5 +61,11 @@ namespace Managing.Application.Abstractions.Grains
/// <param name="accountName">The account name to check balances for</param>
/// <returns>BalanceCheckResult indicating the status and reason for any failure</returns>
Task<BalanceCheckResult> CheckAndEnsureEthBalanceAsync(Guid requestingBotId, string accountName);
/// <summary>
/// Forces an update of the agent summary.
/// </summary>
[OneWay]
Task ForceUpdateSummary();
}
}