Use version 0.3.2 of squeaklib (#67)

This commit is contained in:
Jonathan Zernik 2020-07-05 17:48:47 -07:00 committed by GitHub
parent 220b1eed22
commit fc50f97525
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View file

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

View file

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

View file

@ -66,11 +66,11 @@ class PostgresDb():
squeak.nBlockHeight,
squeak.vchScriptPubKey,
squeak.vchEncryptionKey,
squeak.vchEncDatakey.hex(),
squeak.encDatakey.hex(),
squeak.vchIv.hex(),
squeak.nTime,
squeak.nNonce,
bytes(squeak.encContent.vchEncContent).hex(),
squeak.encContent.hex(),
squeak.vchScriptSig,
str(squeak.GetAddress()),
squeak.vchDecryptionKey,
@ -98,11 +98,11 @@ class PostgresDb():
nBlockHeight=row[6],
vchScriptPubKey=row[7],
vchEncryptionKey=row[8],
vchEncDatakey=bytes.fromhex(row[9]),
encDatakey=bytes.fromhex(row[9]),
vchIv=bytes.fromhex((row[10])),
nTime=row[11],
nNonce=row[12],
encContent=CSqueakEncContent(bytes.fromhex((row[13]))),
encContent=bytes.fromhex((row[13])),
vchScriptSig=row[14],
vchDecryptionKey=row[16],
)