diff --git a/js/controllers/send.js b/js/controllers/send.js index cc9c4f673..276468464 100644 --- a/js/controllers/send.js +++ b/js/controllers/send.js @@ -13,7 +13,7 @@ angular.module('copay.send').controller('SendController', return; } - if ($rootScope.totalBalance <= form.amount.$modelValue) { + if ($rootScope.availableBalance <= form.amount.$modelValue) { $rootScope.flashMessage = { message: 'You have not enough amount to send', type: 'error'}; return; }