ChannelDB: fix typo in sql query - seems harmless though?

This commit is contained in:
SomberNight 2020-03-03 03:56:22 +01:00
parent 3f9e761b67
commit 4d6b0184b9
No known key found for this signature in database
GPG key ID: B33B5F232C6271E9

View file

@ -238,7 +238,7 @@ PRIMARY KEY(node_id, host, port)
create_node_info = """ create_node_info = """
CREATE TABLE IF NOT EXISTS node_info ( CREATE TABLE IF NOT EXISTS node_info (
node_id BOB(33), node_id BLOB(33),
msg BLOB, msg BLOB,
PRIMARY KEY(node_id) PRIMARY KEY(node_id)
)""" )"""