diff --git a/src/Content/ContentManager.py b/src/Content/ContentManager.py index d92fa8fa..c32062e7 100644 --- a/src/Content/ContentManager.py +++ b/src/Content/ContentManager.py @@ -960,10 +960,7 @@ class ContentManager(object): else: return self.verifyContent(inner_path, new_content) else: # Old style signing - if CryptBitcoin.verify(sign_content, self.site.address, sign): - return self.verifyContent(inner_path, new_content) - else: - raise VerifyError("Invalid old-style sign") + raise VerifyError("Invalid old-style sign") except Exception as err: self.log.warning("%s: verify sign error: %s" % (inner_path, Debug.formatException(err)))