Skip to content

Commit f1a810d

Browse files
committedMar 1, 2023
Fixed typo in error messages (#3822, #3824).
1 parent 76fab92 commit f1a810d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed
 

‎src.ts/abi/fragments.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -689,7 +689,7 @@ export class ParamType {
689689
*/
690690
walk(value: any, process: ParamTypeWalkFunc): any {
691691
if (this.isArray()) {
692-
if (!Array.isArray(value)) { throw new Error("invlaid array value"); }
692+
if (!Array.isArray(value)) { throw new Error("invalid array value"); }
693693
if (this.arrayLength !== -1 && value.length !== this.arrayLength) {
694694
throw new Error("array is wrong length");
695695
}
@@ -698,7 +698,7 @@ export class ParamType {
698698
}
699699

700700
if (this.isTuple()) {
701-
if (!Array.isArray(value)) { throw new Error("invlaid tuple value"); }
701+
if (!Array.isArray(value)) { throw new Error("invalid tuple value"); }
702702
if (value.length !== this.components.length) {
703703
throw new Error("array is wrong length");
704704
}
@@ -712,7 +712,7 @@ export class ParamType {
712712
#walkAsync(promises: Array<Promise<void>>, value: any, process: ParamTypeWalkAsyncFunc, setValue: (value: any) => void): void {
713713

714714
if (this.isArray()) {
715-
if (!Array.isArray(value)) { throw new Error("invlaid array value"); }
715+
if (!Array.isArray(value)) { throw new Error("invalid array value"); }
716716
if (this.arrayLength !== -1 && value.length !== this.arrayLength) {
717717
throw new Error("array is wrong length");
718718
}
@@ -738,7 +738,7 @@ export class ParamType {
738738

739739
} else {
740740
if (value == null || typeof(value) !== "object") {
741-
throw new Error("invlaid tuple value");
741+
throw new Error("invalid tuple value");
742742
}
743743

744744
result = components.map((param) => {

‎src.ts/crypto/signature.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ export class Signature {
299299
return new Signature(_guard, r, hexlify(s), v);
300300
}
301301

302-
assertError(false, "invlaid raw signature length");
302+
assertError(false, "invalid raw signature length");
303303
}
304304

305305
if (sig instanceof Signature) { return sig.clone(); }

0 commit comments

Comments
 (0)
Please sign in to comment.