diff --git a/electrum/gui/kivy/uix/dialogs/lightning_channels.py b/electrum/gui/kivy/uix/dialogs/lightning_channels.py index a472f8fb2..a729b0be2 100644 --- a/electrum/gui/kivy/uix/dialogs/lightning_channels.py +++ b/electrum/gui/kivy/uix/dialogs/lightning_channels.py @@ -173,4 +173,4 @@ class LightningChannelsDialog(Factory.Popup): _('Available to spend'): self.app.format_amount_and_units(chan.available_to_spend(LOCAL) // 1000), _('State'): chan.get_state(), _('Initiator'): 'Opened/funded by us' if chan.constraints.is_initiator else 'Opened/funded by remote party', - _('Current feerate'): chan.constraints.feerate} + _('Current feerate'): chan.get_latest_feerate(LOCAL)}