Skip to content

Commit

Permalink
Merge pull request #219 from OriginTrail/get-sharding-table-fix
Browse files Browse the repository at this point in the history
Resolved issue when fetching sharding table
  • Loading branch information
0xbraindevd authored Jan 31, 2024
2 parents 962dda4 + 119c601 commit 6de1293
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 6de1293

Please sign in to comment.