tChannelDB: fix typo in sql query - seems harmless though? - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 4d6b0184b9a82582a6f56d379eb250d38947785a DIR parent 3f9e761b675b4041e852db0ef3853f234349b452 HTML Author: SomberNight <somber.night@protonmail.com> Date: Tue, 3 Mar 2020 03:56:22 +0100 ChannelDB: fix typo in sql query - seems harmless though? Diffstat: M electrum/channel_db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/electrum/channel_db.py b/electrum/channel_db.py t@@ -238,7 +238,7 @@ PRIMARY KEY(node_id, host, port) create_node_info = """ CREATE TABLE IF NOT EXISTS node_info ( -node_id BOB(33), +node_id BLOB(33), msg BLOB, PRIMARY KEY(node_id) )"""