Merge branch 'dev' into fix/lam-298/custom_info_requests_flow

* dev: (40 commits)
  fix: remove unnecessary variable
  fix: check for starting supervisor state
  fix: Ethereum sends
  fix: force balance to big number
  fix: XMR sendCoins interface
  chore: update react
  fix: update only if node is stopped
  fix: convert bn.js to bignumber.js bignum
  fix: wallet file checking
  fix: show batching errors on admin fix: funding page should take into account batching transactions
  fix: add feeMultiplier parameter
  fix: BN functions on sendCoinsBatch
  fix: remove allowTransactionBatching from being required
  feat: disable transaction batching editing unless it's BTC
  feat: add transaction batching option to advanced wallet settings
  fix: pollingRoutes typo
  fix: button style and incomplete url
  fix: remove date width
  fix: l-c import on lamassu-send-coins script
  chore: built react files
  ...
This commit is contained in:
André Sá 2022-02-11 15:16:00 +00:00
commit b03901ddd4
56 changed files with 438 additions and 158 deletions

View file

@ -139,8 +139,8 @@ function poll (req, res, next) {
response.idCardDataVerificationThreshold = compatTriggers.idCardData
response.idCardPhotoVerificationActive = !!compatTriggers.idCardPhoto
response.idCardPhotoVerificationThreshold = compatTriggers.idCardPhoto
response.sanctionsVerificationActive = !!compatTriggers.sancations
response.sanctionsVerificationThreshold = compatTriggers.sancations
response.sanctionsVerificationActive = !!compatTriggers.sanctions
response.sanctionsVerificationThreshold = compatTriggers.sanctions
response.frontCameraVerificationActive = !!compatTriggers.facephoto
response.frontCameraVerificationThreshold = compatTriggers.facephoto
}