Skip to content

Commit cdf96ea

Browse files
hotfix: fix networkId mismatch issue for Devnet
1 parent d652e7a commit cdf96ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/klesia/src/methods/mina.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ const networkId = async () => {
7878
`,
7979
{},
8080
);
81-
return data.networkID;
81+
return data.networkID === "mina:testnet" ? "mina:devnet" : data.networkID;
8282
};
8383

8484
const sendTransaction = async ({

0 commit comments

Comments
 (0)