electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 3222e26e0129cce650cd1f92819bdacbbced0be8
parent f4b9d2f47c4243419b539ebd15a9c6b966d61748
Author: ThomasV <thomasv@electrum.org>
Date:   Sun,  9 Dec 2018 14:36:49 +0100

format message

Diffstat:
Melectrum/lnrouter.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/electrum/lnrouter.py b/electrum/lnrouter.py @@ -454,7 +454,7 @@ class ChannelDB(JsonDB): try: channel_info = self._id_to_channel_info[short_channel_id] except KeyError: - self.print_error('cannot find channel {}'.format(short_channel_id)) + self.print_error(f'remove_channel: cannot find channel {bh2u(short_channel_id)}') return self._id_to_channel_info.pop(short_channel_id, None) for node in (channel_info.node_id_1, channel_info.node_id_2):