Refactor accounts query.

This commit is contained in:
Spencer Ofwiti 2021-05-13 19:29:44 +03:00
parent 57971246b5
commit 60b128b293
1 changed files with 2 additions and 2 deletions

View File

@ -29,12 +29,12 @@ export class AccountIndex {
public async last(numberOfAccounts: number): Promise<Array<string>> {
const count: number = await this.totalAccounts();
let lowest: number = count - numberOfAccounts - 1;
let lowest: number = count - numberOfAccounts;
if (lowest < 0) {
lowest = 0;
}
const accounts: Array<string> = [];
for (let i = count - 1; i > lowest; i--) {
for (let i = count; i > lowest; i--) {
const account: string = await this.contract.methods.entry(i).call();
accounts.push(account);
}