FIX: coldcard

This commit is contained in:
Overtorment 2020-02-27 14:24:26 +00:00
parent 590b802afb
commit b3baf3f290

View file

@ -1,5 +1,6 @@
import { BitcoinUnit, Chain } from '../models/bitcoinUnits'; import { BitcoinUnit, Chain } from '../models/bitcoinUnits';
const createHash = require('create-hash'); const createHash = require('create-hash');
export class AbstractWallet { export class AbstractWallet {
static type = 'abstract'; static type = 'abstract';
static typeReadable = 'abstract'; static typeReadable = 'abstract';
@ -157,4 +158,8 @@ export class AbstractWallet {
getAddressAsync() { getAddressAsync() {
return new Promise(resolve => resolve(this.getAddress())); return new Promise(resolve => resolve(this.getAddress()));
} }
useWithHardwareWalletEnabled() {
return false;
}
} }