fixed invalid sqlite3

This commit is contained in:
Kevin Froman 2018-04-25 02:20:10 -05:00
parent b0271e7779
commit c8fce63412
No known key found for this signature in database
GPG Key ID: 0D414D0FE405B63B
1 changed files with 3 additions and 3 deletions

View File

@ -227,7 +227,7 @@ class Core:
dataType - data type of the block dataType - data type of the block
dataFound - if the data has been found for the block dataFound - if the data has been found for the block
dataSaved - if the data has been saved 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 author - multi-round partial scrypt hash of authors public key
''' '''
if os.path.exists(self.blockDB): if os.path.exists(self.blockDB):
@ -241,8 +241,8 @@ class Core:
dataType text, dataType text,
dataFound int, dataFound int,
dataSaved int, dataSaved int,
signature text, sig text,
author text, author text
); );
''') ''')
conn.commit() conn.commit()