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