We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23cf88b commit f0b50e1Copy full SHA for f0b50e1
src/juno-node.ts
@@ -224,7 +224,7 @@ export default class JunoModule {
224
});
225
} else {
226
// Function wasn't found in the module.
227
- throw new JunoError(ErrorTypes.UnkownFunction);
+ throw new JunoError(ErrorTypes.UnknownFunction);
228
}
229
230
src/utils/constants.ts
@@ -30,10 +30,10 @@ export const ResponseTypes = {
30
export const ErrorTypes = {
31
MalformedRequest: 0,
32
InvalidRequestId: 1,
33
- UnkownRequest: 2,
+ UnknownRequest: 2,
34
UnregisteredModule: 3,
35
- UnkownModule: 4,
36
- UnkownFunction: 5,
+ UnknownModule: 4,
+ UnknownFunction: 5,
37
InvalidModuleId: 6,
38
DuplicateModule: 7,
39
};
0 commit comments