fix: reject reused addresses

This commit is contained in:
José Oliveira 2021-02-22 12:09:10 +00:00 committed by Josh Harvey
parent 3fdac72533
commit 2bfd26d13c

View file

@ -377,7 +377,8 @@ function migrateComplianceTriggers (config) {
'sanctionsVerificationActive', 'sanctionsVerificationActive',
'sanctionsVerificationThreshold', 'sanctionsVerificationThreshold',
'hardLimitVerificationActive', 'hardLimitVerificationActive',
'hardLimitVerificationThreshold' 'hardLimitVerificationThreshold',
'rejectAddressReuseActive'
] ]
const global = _.fromPairs( const global = _.fromPairs(
@ -415,7 +416,6 @@ function migrateComplianceTriggers (config) {
createTrigger(requirements.block, global.hardLimitVerificationThreshold) createTrigger(requirements.block, global.hardLimitVerificationThreshold)
) )
} }
return { return {
triggers, triggers,
['compliance_rejectAddressReuse']: global.rejectAddressReuseActive ['compliance_rejectAddressReuse']: global.rejectAddressReuseActive