mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-22 23:08:07 +01:00
FIX: main call to action (closes #39)
This commit is contained in:
parent
fa5c468041
commit
c16b6066a5
2 changed files with 2 additions and 2 deletions
|
@ -37,7 +37,7 @@ export class AbstractWallet {
|
|||
}
|
||||
|
||||
allowSend() {
|
||||
return this.getBalance() > 0;
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -23,7 +23,7 @@ export class HDSegwitP2SHWallet extends AbstractHDWallet {
|
|||
}
|
||||
|
||||
allowSend() {
|
||||
return this.getBalance() > 0;
|
||||
return true;
|
||||
}
|
||||
|
||||
generate() {
|
||||
|
|
Loading…
Add table
Reference in a new issue