What changed, and why it matters
This commit simply removes a small anchor icon from the user interface. Anchor outputs are a standard feature, so the icon no longer provided useful information. No security issue is present.
No action needed; this is a benign UI cleanup.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The commit deletes the anchor.png icon and removes the ChanFeatAnchors ChannelFeature class and its registration in ChannelFeatureIcons. This is a UI-only cleanup because anchor outputs are mandatory, making the indicator redundant. No code handling anchor outputs or channel security is changed.
Changed components
electrum/gui/qt/channels_list.pyelectrum/gui/icons/anchor.pngInspect captured patch +0 / −8
diff --git a/electrum/gui/icons/anchor.png b/electrum/gui/icons/anchor.png
deleted file mode 100644
index 20b152f..0000000
Binary files a/electrum/gui/icons/anchor.png and /dev/null differ
diff --git a/electrum/gui/qt/channels_list.py b/electrum/gui/qt/channels_list.py
index f8c4eb4..985e454 100644
--- a/electrum/gui/qt/channels_list.py
+++ b/electrum/gui/qt/channels_list.py
@@ -440,12 +440,6 @@ class ChanFeatNoOnchainBackup(ChannelFeature):
return read_QIcon("cloud_no")
-class ChanFeatAnchors(ChannelFeature):
- def tooltip(self) -> str:
- return _("This channel uses anchor outputs.")
- def icon(self) -> QIcon:
- return read_QIcon("anchor")
-
class ChannelFeatureIcons:
@@ -467,8 +461,6 @@ class ChannelFeatureIcons:
feats.append(ChanFeatTrampoline())
if not chan.has_onchain_backup():
feats.append(ChanFeatNoOnchainBackup())
- if chan.has_anchors():
- feats.append(ChanFeatAnchors())
return ChannelFeatureIcons(feats)
def paint(self, painter: QPainter, rect: QRect) -> None:
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.