iterate payouts in reverse order

Signed-off-by: Uncle Stretch <uncle.stretch@ghostchain.io>
This commit is contained in:
Uncle Stretch 2025-02-20 20:58:34 +03:00
parent d42bb97d36
commit 3284d5d07e
Signed by: str3tch
GPG Key ID: 84F3190747EE79AA

View File

@ -283,7 +283,10 @@ pub async fn get_validator_staking_results(
) -> Result<()> {
let current_era = super::raw_calls::staking::current_era(api, None).await?.unwrap_or(0);
let era_depth = super::raw_calls::staking::history_depth(api).unwrap_or(0);
for era_index in current_era.saturating_sub(era_depth)..current_era {
let start = current_era.saturating_sub(era_depth);
let end = current_era.saturating_sub(1);
for era_index in (start..end).rev() {
if get_validator_staking_result(action_tx, api, account_id, era_index).await? {
break;
}