chore: remove unused params

This commit is contained in:
Rafael Taranto 2023-08-22 13:02:12 +01:00
parent 9048c91a32
commit bdd413a0ca
8 changed files with 12 additions and 14 deletions

View file

@ -1,5 +1,4 @@
const _ = require('lodash/fp')
const argv = require('minimist')(process.argv.slice(2))
const crypto = require('crypto')
const pgp = require('pg-promise')()
const dateFormat = require('dateformat')
@ -163,9 +162,7 @@ function plugins (settings, deviceId) {
const virtualCassettes = [Math.max(...denominations) * 2]
const counts = argv.cassettes
? argv.cassettes.split(',')
: rec.counts
const counts = rec.counts
if (rec.counts.length !== denominations.length) {
throw new Error('Denominations and respective counts do not match!')
@ -763,7 +760,9 @@ function plugins (settings, deviceId) {
}
function getPhoneCode (phone) {
const code = argv.mockSms
const notifications = configManager.getNotifications(settings.config)
const code = notifications.thirdParty_sms === 'mock-sms'
? '123'
: randomCode()

View file

@ -2,7 +2,6 @@
const dateFormat = require('dateformat')
const ph = require('./plugin-helper')
const argv = require('minimist')(process.argv.slice(2))
const { utils: coinUtils } = require('@lamassu/coins')
const _ = require('lodash/fp')