Update file store for chainlib 0.2.0

This commit is contained in:
lash 2022-05-10 18:29:32 +00:00
parent d3d8e5be54
commit 924e48b63b
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746
3 changed files with 9 additions and 5 deletions

View File

@ -1,3 +1,7 @@
- 0.1.4
* Update file store on chainlib 0.2.0
- 0.1.3
* Upgrade deps
- 0.1.2 - 0.1.2
* Upgrade deps * Upgrade deps
- 0.1.1 - 0.1.1

View File

@ -25,7 +25,7 @@ def chain_dir_for(chain_spec, base_dir=default_base_dir):
class FileStore: class FileStore:
def put_tx(self, tx, include_data=False): def put_tx(self, tx, include_data=False):
raw = pack(tx.src(), self.chain_spec) raw = pack(tx.src, self.chain_spec)
tx_hash_dirnormal = strip_0x(tx.hash).upper() tx_hash_dirnormal = strip_0x(tx.hash).upper()
tx_hash_bytes = bytes.fromhex(tx_hash_dirnormal) tx_hash_bytes = bytes.fromhex(tx_hash_dirnormal)
self.tx_raw_dir.add(tx_hash_bytes, raw) self.tx_raw_dir.add(tx_hash_bytes, raw)
@ -62,10 +62,10 @@ class FileStore:
f.close() f.close()
if include_data: if include_data:
src = json.dumps(tx.src()).encode('utf-8') src = json.dumps(tx.src).encode('utf-8')
self.tx_dir.add(bytes.fromhex(strip_0x(tx.hash)), src) self.tx_dir.add(bytes.fromhex(strip_0x(tx.hash)), src)
rcpt_src = tx.rcpt_src() rcpt_src = tx.result.src
logg.debug('rcpt {}'.format(rcpt_src)) logg.debug('rcpt {}'.format(rcpt_src))
if rcpt_src != None: if rcpt_src != None:
rcpt_src = json.dumps(rcpt_src).encode('utf-8') rcpt_src = json.dumps(rcpt_src).encode('utf-8')
@ -79,7 +79,7 @@ class FileStore:
num_bytes = block.number.to_bytes(8, 'big') num_bytes = block.number.to_bytes(8, 'big')
self.block_hash_dir.add(hash_bytes, num_bytes) self.block_hash_dir.add(hash_bytes, num_bytes)
if include_data: if include_data:
src = json.dumps(block.src()).encode('utf-8') src = json.dumps(block.src).encode('utf-8')
self.block_src_dir.add(hash_bytes, src) self.block_src_dir.add(hash_bytes, src)

View File

@ -1,6 +1,6 @@
[metadata] [metadata]
name = eth-cache name = eth-cache
version = 0.1.3 version = 0.1.4
description = Ethereum chain data caching tools description = Ethereum chain data caching tools
author = Louis Holbrook author = Louis Holbrook
author_email = dev@holbrook.no author_email = dev@holbrook.no