working on find_m_n script

This commit is contained in:
Manuel Araoz 2014-05-21 11:10:19 -03:00
commit c8ebf0ce65
4 changed files with 73 additions and 5 deletions

View file

@ -52,8 +52,7 @@ angular.module('copay.send').controller('SendController',
var amount = (form.amount.$modelValue * 100000000).toString(); // satoshi to string
var w = $rootScope.wallet;
w.createTx( address, amount,function() {
w.createTx(address, amount,function() {
$scope.loading = false;
$rootScope.$flashMessage = { message: 'The transaction proposal has been created', type: 'success'};
$rootScope.$digest();