fix(routes) change from async to sync

This commit is contained in:
Josh Harvey 2014-11-13 14:44:36 -05:00
parent 94a9adefa7
commit 7f08d28777

View file

@ -109,9 +109,8 @@ function cashOut(req, res) {
}
function depositAck(req, res) {
plugins.depositAck(getFingerprint(req), req.body, function(err) {
res.json(200);
});
plugins.depositAck(getFingerprint(req), req.body);
res.json(200);
}
function deviceEvent(req, res) {