confirm controller refactor / wip1

This commit is contained in:
Matias Alejo Garcia 2017-06-20 12:14:21 -03:00
commit 9b90b8f2aa
No known key found for this signature in database
GPG key ID: 02470DB551277AB3
6 changed files with 362 additions and 354 deletions

View file

@ -10,7 +10,7 @@ angular.module('copayApp.services').service('sendMaxService', function(feeServic
*
*/
this.getInfo = function(wallet, cb) {
feeService.getCurrentFeeValue(wallet.credentials.network, null, function(err, feePerKb) {
feeService.getCurrentFeeRate(wallet.credentials.network, null, function(err, feePerKb) {
if (err) return cb(err);
var config = configService.getSync().wallet;