mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-03-03 20:07:11 +01:00
FIX: coldcard
This commit is contained in:
parent
590b802afb
commit
b3baf3f290
1 changed files with 5 additions and 0 deletions
|
@ -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;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue