fix(routes) change from async to sync
This commit is contained in:
parent
94a9adefa7
commit
7f08d28777
1 changed files with 2 additions and 3 deletions
|
|
@ -109,9 +109,8 @@ function cashOut(req, res) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function depositAck(req, res) {
|
function depositAck(req, res) {
|
||||||
plugins.depositAck(getFingerprint(req), req.body, function(err) {
|
plugins.depositAck(getFingerprint(req), req.body);
|
||||||
res.json(200);
|
res.json(200);
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function deviceEvent(req, res) {
|
function deviceEvent(req, res) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue