bump server after paying for an account

This commit is contained in:
ansuz
2017-05-23 16:11:07 +02:00
parent 6faca87e73
commit e6c04ccb49
3 changed files with 11 additions and 6 deletions

View File

@@ -744,17 +744,17 @@ define([
common.updatePinLimit = function (cb) {
if (!pinsReady()) { return void cb('[RPC_NOT_READY]'); }
rpc.updatePinLimits(function (e, limit, plan) {
rpc.updatePinLimits(function (e, limit, plan, note) {
if (e) { return cb(e); }
cb(e, limit, plan);
cb(e, limit, plan, note);
});
};
common.getPinLimit = function (cb) {
if (!pinsReady()) { return void cb('[RPC_NOT_READY]'); }
rpc.getLimit(function (e, limit, plan) {
rpc.getLimit(function (e, limit, plan, note) {
if (e) { return cb(e); }
cb(void 0, limit, plan);
cb(void 0, limit, plan, note);
});
};