Merge pull request #1497 from isocolsky/fea/no_broadcast
When only 1 signature is required, broadcast at creation
This commit is contained in:
commit
90c01ae384
3 changed files with 13 additions and 1 deletions
|
|
@ -95,6 +95,10 @@ FakeWallet.prototype.isShared = function() {
|
|||
return this.totalCopayers > 1;
|
||||
}
|
||||
|
||||
FakeWallet.prototype.requiresMultipleSignatures = function() {
|
||||
return this.requiredCopayers > 1;
|
||||
};
|
||||
|
||||
FakeWallet.prototype.isReady = function() {
|
||||
return true;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue