Bump deps (#239)

This commit is contained in:
Jaco Greeff
2019-11-06 23:28:15 +01:00
committed by GitHub
parent 2901193c51
commit f6c85f275a
17 changed files with 751 additions and 748 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ export default class Base {
private _ss58Format?: Prefix;
public constructor () {
constructor () {
this._accounts = accounts;
this._addresses = addresses;
this._contracts = contracts;
+1 -1
View File
@@ -28,7 +28,7 @@ export default class Ledger {
private app: LedgerApp | null = null;
private type: LedgerTypes;
public constructor (type: LedgerTypes) {
constructor (type: LedgerTypes) {
assert(['hid', 'u2f', 'webusb'].includes(type), `Unsupported transport ${type}`);
this.type = type;
+1 -1
View File
@@ -12,7 +12,7 @@ import path from 'path';
export default class FileStore implements KeyringStore {
private _path: string;
public constructor (path: string) {
constructor (path: string) {
if (!fs.existsSync(path)) {
mkdirp.sync(path);
}