iterate payouts in reverse order
Signed-off-by: Uncle Stretch <uncle.stretch@ghostchain.io>
This commit is contained in:
parent
d42bb97d36
commit
3284d5d07e
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user