From 08df482119e5c05fc44a2a8b8ea2c89adee211ae Mon Sep 17 00:00:00 2001 From: scgbckbone Date: Thu, 25 Sep 2025 14:31:34 +0200 Subject: [PATCH] proper label for Web 2FA warning --- shared/ccc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shared/ccc.py b/shared/ccc.py index be2fccca..2d980877 100644 --- a/shared/ccc.py +++ b/shared/ccc.py @@ -125,10 +125,10 @@ class SpendingPolicy(dict): raise SpendPolicyViolation("whitelist: " + addr) # Web 2FA - # - slow, requires UX, and they might not acheive it... + # - slow, requires UX, and they might not achieve it... # - wait until about to do signature if pol.get('web2fa', False): - psbt.warnings.append(('CCC', 'Web 2FA required.')) + psbt.warnings.append((pol.nvkey.upper(), 'Web 2FA required.')) return True async def web2fa_challenge(self, msg):