mirror of
https://github.com/yzernik/squeaknode.git
synced 2026-08-13 12:33:25 +02:00
Update squeaklib to 0.3.3
This commit is contained in:
parent
5cdd868af8
commit
e6d5dafce9
3 changed files with 4 additions and 4 deletions
|
|
@ -1,5 +1,5 @@
|
|||
importlib_resources==1.4.0
|
||||
squeaklib==0.3.2
|
||||
squeaklib==0.3.3
|
||||
argparse
|
||||
googleapis-common-protos
|
||||
grpcio
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
importlib_resources==1.4.0
|
||||
squeaklib==0.3.2
|
||||
squeaklib==0.3.3
|
||||
argparse
|
||||
googleapis-common-protos
|
||||
grpcio
|
||||
|
|
|
|||
|
|
@ -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])),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue