Skip to content

Commit cfd9191

Browse files
Update secp256k1hdwallet.ts (#1842)
1 parent 7c8aa76 commit cfd9191

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/amino/src/secp256k1hdwallet.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ export class Secp256k1HdWallet implements OfflineAminoSigner {
203203
const root = JSON.parse(serialization);
204204
if (!isNonNullObject(root)) throw new Error("Root document is not an object.");
205205
// This cast is safe because `root` comes from a valid JSON document and `root` is a non-null object.
206-
// I.e. it can only be a JSON object, not an aribitrary JS object.
206+
// I.e. it can only be a JSON object, not an arbitrary JS object.
207207
const untypedRoot: Record<string, any> = root;
208208
switch (untypedRoot.type) {
209209
case serializationTypeV1: {

0 commit comments

Comments
 (0)