Skip to content

Commit

Permalink
ref: update motherchain (#408)
Browse files Browse the repository at this point in the history
  • Loading branch information
MrX-SNX authored Aug 23, 2024
1 parent b2358db commit 3cf7133
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion governance/ui/src/mutations/useCastVotes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ export function useCastVotes(
mutationKey: ['cast', councils.toString(), JSON.stringify(candidates)],
mutationFn: async () => {
if (signer && network && multicall) {
const isMotherchain = network.id === (process.env.CI === 'true' ? 13001 : 2192);
const isMotherchain = true;
// network.id === (process.env.CI === 'true' ? 13001 : 2192);
try {
const electionModules = councils.map((council) =>
getCouncilContract(council).connect(signer)
Expand Down

0 comments on commit 3cf7133

Please sign in to comment.