Bump dev deps (#738)

This commit is contained in:
Jaco
2023-03-18 12:39:38 +02:00
committed by GitHub
parent 6907d0c30a
commit b181da4919
7 changed files with 27 additions and 28 deletions
+2 -2
View File
@@ -289,7 +289,7 @@ export class Keyring extends Base implements KeyringStruct {
this.loadContract(json, key);
}
}
} catch (error) {
} catch {
console.warn(`Keyring: Unable to load ${key}:${stringify(json)}`);
}
}
@@ -299,7 +299,7 @@ export class Keyring extends Base implements KeyringStruct {
if (this.allowGenesis(account)) {
try {
this.loadInjected(account.address, account.meta, account.type);
} catch (error) {
} catch {
console.warn(`Keyring: Unable to inject ${stringify(account)}`);
}
}