From 2bfd26d13c6600440af555f570aea5b6755c8dcb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Oliveira?= Date: Mon, 22 Feb 2021 12:09:10 +0000 Subject: [PATCH] fix: reject reused addresses --- lib/config-migration.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/config-migration.js b/lib/config-migration.js index 579613b8..d84926e4 100644 --- a/lib/config-migration.js +++ b/lib/config-migration.js @@ -377,7 +377,8 @@ function migrateComplianceTriggers (config) { 'sanctionsVerificationActive', 'sanctionsVerificationThreshold', 'hardLimitVerificationActive', - 'hardLimitVerificationThreshold' + 'hardLimitVerificationThreshold', + 'rejectAddressReuseActive' ] const global = _.fromPairs( @@ -415,7 +416,6 @@ function migrateComplianceTriggers (config) { createTrigger(requirements.block, global.hardLimitVerificationThreshold) ) } - return { triggers, ['compliance_rejectAddressReuse']: global.rejectAddressReuseActive