1
0

storage: fix bug in convert_version_17

closes #5400
This commit is contained in:
SomberNight
2019-06-06 19:51:37 +02:00
parent 53d189fc7a
commit 6bdc6f559c

View File

@@ -422,7 +422,7 @@ class JsonDB(Logger):
continue
prevout_hash = txin['prevout_hash']
prevout_n = txin['prevout_n']
spent_outpoints[prevout_hash][prevout_n] = txid
spent_outpoints[prevout_hash][str(prevout_n)] = txid
self.put('spent_outpoints', spent_outpoints)
self.put('seed_version', 17)