fix error with variable naming
This commit is contained in:
parent
5a072e7036
commit
23f18bd736
1 changed files with 1 additions and 1 deletions
2
app.js
2
app.js
|
@ -165,7 +165,7 @@ const processCompletedDeposits = (callback) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
// remove the entry from the DB
|
// remove the entry from the DB
|
||||||
return db.query('DELETE FROM CompletedDepositConfirmations WHERE DepositId = ?', [C.DepositId], (ierr) => {
|
return db.query('DELETE FROM CompletedDepositConfirmations WHERE DepositId = ?', [completedDeposit.DepositId], (ierr) => {
|
||||||
if (ierr) {
|
if (ierr) {
|
||||||
return ecb(ierr, null);
|
return ecb(ierr, null);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue