wording on 1-N wallets at send
This commit is contained in:
parent
e63ce5f791
commit
b2238baffa
1 changed files with 3 additions and 2 deletions
|
|
@ -14,7 +14,8 @@ angular.module('copayApp.controllers').controller('SendController',
|
|||
preconditions.checkState(w.settings.unitToSatoshi);
|
||||
|
||||
$scope.isShared = w.isShared();
|
||||
$rootScope.title =$scope.isShared ? 'Send Proposal' : 'Send';
|
||||
$scope.requiresMultipleSignatures = w.requiresMultipleSignatures();
|
||||
$rootScope.title =$scope.requiresMultipleSignatures ? 'Send Proposal' : 'Send';
|
||||
$scope.loading = false;
|
||||
$scope.error = $scope.success = null;
|
||||
|
||||
|
|
@ -127,7 +128,7 @@ angular.module('copayApp.controllers').controller('SendController',
|
|||
if (msg.match('expired'))
|
||||
msg = 'The payment request has expired';
|
||||
|
||||
var message = 'The transaction' + ($scope.isShared ? ' proposal' : '') +
|
||||
var message = 'The transaction' + ($scope.requiresMultipleSignatures ? ' proposal' : '') +
|
||||
' could not be created: ' + msg;
|
||||
|
||||
$scope.error = message;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue