From c8fce63412cc6d3c854bb82843577fbb0dc24fc6 Mon Sep 17 00:00:00 2001 From: Kevin Froman Date: Wed, 25 Apr 2018 02:20:10 -0500 Subject: [PATCH] fixed invalid sqlite3 --- onionr/core.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/onionr/core.py b/onionr/core.py index 1ac22426..6771e03e 100644 --- a/onionr/core.py +++ b/onionr/core.py @@ -227,7 +227,7 @@ class Core: dataType - data type of the block dataFound - if the data has been found for the block dataSaved - if the data has been saved for the block - signature - optional signature by the author (not optional if author is specified) + sig - optional signature by the author (not optional if author is specified) author - multi-round partial scrypt hash of authors public key ''' if os.path.exists(self.blockDB): @@ -241,8 +241,8 @@ class Core: dataType text, dataFound int, dataSaved int, - signature text, - author text, + sig text, + author text ); ''') conn.commit()