diff --git a/electrumx/lib/coins.py b/electrumx/lib/coins.py
index ad92e2b..b16928d 100644
--- a/electrumx/lib/coins.py
+++ b/electrumx/lib/coins.py
@@ -624,6 +624,17 @@ class BitcoinSegwitTestnet(BitcoinTestnetMixin, Coin):
'testnet.qtornado.com s t',
]
+ @classmethod
+ def upgrade_required(cls, client_ver):
+ if client_ver < (3, 3, 3):
+ return ('
'
+ 'Your transaction was successfully broadcast.
'
+ 'However, you are using a VULNERABLE version of Electrum.
'
+ 'Download the new version from the usual place:
'
+ 'https://electrum.org/'
+ '
')
+ return False
+
class BitcoinSegwitRegtest(BitcoinSegwitTestnet):
NAME = "BitcoinSegwit"