remove extra log statement

This commit is contained in:
keyan 2022-02-28 17:29:20 -06:00
parent 022c72b95b
commit 9eced2b334
1 changed files with 0 additions and 1 deletions

View File

@ -536,7 +536,6 @@ export default {
// check if the user has the funds to run for the first minute
const minuteMsats = maxBid * 5 / 216
const user = await models.user.findUnique({ where: { id: me.id } })
console.log(user, user.msats, minuteMsats)
if (user.msats < minuteMsats) {
throw new UserInputError('insufficient funds')
}