Update squeaklib to 0.3.3

This commit is contained in:
yzernik 2020-07-05 18:21:08 -07:00
parent 5cdd868af8
commit e6d5dafce9
3 changed files with 4 additions and 4 deletions

View file

@ -1,5 +1,5 @@
importlib_resources==1.4.0
squeaklib==0.3.2
squeaklib==0.3.3
argparse
googleapis-common-protos
grpcio

View file

@ -1,5 +1,5 @@
importlib_resources==1.4.0
squeaklib==0.3.2
squeaklib==0.3.3
argparse
googleapis-common-protos
grpcio

View file

@ -67,7 +67,7 @@ class PostgresDb():
squeak.vchScriptPubKey,
squeak.vchEncryptionKey,
squeak.encDatakey.hex(),
squeak.vchIv.hex(),
squeak.iv.hex(),
squeak.nTime,
squeak.nNonce,
squeak.encContent.hex(),
@ -99,7 +99,7 @@ class PostgresDb():
vchScriptPubKey=row[7],
vchEncryptionKey=row[8],
encDatakey=bytes.fromhex(row[9]),
vchIv=bytes.fromhex((row[10])),
iv=bytes.fromhex((row[10])),
nTime=row[11],
nNonce=row[12],
encContent=bytes.fromhex((row[13])),