FIX: main call to action (closes #39)

This commit is contained in:
Overtorment 2018-10-06 01:45:24 +01:00
parent fa5c468041
commit c16b6066a5
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ export class AbstractWallet {
}
allowSend() {
return this.getBalance() > 0;
return true;
}
/**

View File

@ -23,7 +23,7 @@ export class HDSegwitP2SHWallet extends AbstractHDWallet {
}
allowSend() {
return this.getBalance() > 0;
return true;
}
generate() {