Skip to content

Commit

Permalink
Resolved issue when fetching sharding table
Browse files Browse the repository at this point in the history
  • Loading branch information
djordjekovac committed Jan 31, 2024
1 parent 962dda4 commit 119c601
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/v2/ShardingTable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ contract ShardingTableV2 is Named, Versioned, ContractStatus, Initializable {
unchecked {
index += 1;
}
nextIdentityId = sts.indexToIdentityId(index);
nextIdentityId = sts.indexToIdentityId(index + startingNode.index);
}

return nodesPage;
Expand Down

0 comments on commit 119c601

Please sign in to comment.