Skip to content

Commit

Permalink
hotfix: fix networkId mismatch issue for Devnet (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
DeMonkeyCoder authored Nov 29, 2024
1 parent d652e7a commit 67c9205
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/klesia/src/methods/mina.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const networkId = async () => {
`,
{},
);
return data.networkID;
return data.networkID === "mina:testnet" ? "mina:devnet" : data.networkID;
};

const sendTransaction = async ({
Expand Down

0 comments on commit 67c9205

Please sign in to comment.