Merge pull request #5724 from cmgustavo/ref/clean-code-01

Removes old _NextStep code
This commit is contained in:
Javier Donadío 2017-03-06 21:44:49 +02:00 committed by GitHub
commit bbd20482be
2 changed files with 1 additions and 17 deletions

View file

@ -324,18 +324,6 @@ angular.module('copayApp.services')
storage.remove('addressbook-' + network, cb);
};
root.setNextStep = function(service, status, cb) {
storage.set('nextStep-' + service, status, cb);
};
root.getNextStep = function(service, cb) {
storage.get('nextStep-' + service, cb);
};
root.removeNextStep = function(service, cb) {
storage.remove('nextStep-' + service, cb);
};
root.setLastCurrencyUsed = function(lastCurrencyUsed, cb) {
storage.set('lastCurrencyUsed', lastCurrencyUsed, cb)
};