Skip to content

Commit

Permalink
fix: fix masterShardId being assigned to shard 0
Browse files Browse the repository at this point in the history
  • Loading branch information
bajpai244 committed Jul 24, 2024
1 parent d919754 commit db0d06d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/clients/constants.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
const emptyAddress = "0x0000000000000000000000000000000000000000";
const masterShardId = 0;
// TODO: as of devnet there is not master shard, this constant should be updated once we have a master shard
const masterShardId = 2 ** 16 - 1;

export { emptyAddress, masterShardId };

0 comments on commit db0d06d

Please sign in to comment.