File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -94,8 +94,8 @@ def versionThree(self):
9494 'In messages.dat database, adding tag field to'
9595 ' the inventory table.' )
9696 item = '''ALTER TABLE inventory ADD tag blob DEFAULT '' '''
97- parameters = ''
98- self .cur .execute (item , parameters )
97+ param = ''
98+ self .cur .execute (item , param )
9999 item = '''update settings set value=? WHERE key='version';'''
100100 parameters = (4 ,)
101101 self .cur .execute (item , parameters )
@@ -184,8 +184,8 @@ def versionEight(self):
184184 'In messages.dat database, adding sighash field to'
185185 ' the inbox table.' )
186186 item = '''ALTER TABLE inbox ADD sighash blob DEFAULT '' '''
187- parameters = ''
188- self .cur .execute (item , parameters )
187+ param = ''
188+ self .cur .execute (item , param )
189189 item = '''update settings set value=? WHERE key='version';'''
190190 parameters = (9 ,)
191191 self .cur .execute (item , parameters )
You can’t perform that action at this time.
0 commit comments