From 00adc25d15241e18db0601b24f0a5c7c79e7e74a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9rgio=20Salgado?= Date: Thu, 31 Mar 2022 22:06:05 +0100 Subject: [PATCH] fix: add customerId to the list of updatable fields --- lib/cash-out/cash-out-low.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cash-out/cash-out-low.js b/lib/cash-out/cash-out-low.js index 210270af..2772374f 100644 --- a/lib/cash-out/cash-out-low.js +++ b/lib/cash-out/cash-out-low.js @@ -8,7 +8,7 @@ const toObj = helper.toObj const UPDATEABLE_FIELDS = ['txHash', 'txVersion', 'status', 'dispense', 'dispenseConfirmed', 'notified', 'redeem', 'phone', 'error', 'swept', 'publishedAt', 'confirmedAt', 'errorCode', - 'receivedCryptoAtoms', 'walletScore' ] + 'receivedCryptoAtoms', 'walletScore', 'customerId' ] module.exports = {upsert, update, insert}