Merge branch 'master' into spencer/docs

This commit is contained in:
Spencer Ofwiti 2021-05-13 19:39:57 +03:00
commit 5e809594c7
1 changed files with 2 additions and 2 deletions

View File

@ -94,12 +94,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);
}