Compare commits

..

No commits in common. "master" and "dev-0.1.3" have entirely different histories.

4 changed files with 6 additions and 12 deletions

View File

@ -1,9 +1,3 @@
- 0.1.5
* Upgrade chainlib to 0.3.0
- 0.1.4
* Update file store on chainlib 0.2.0
- 0.1.3
* Upgrade deps
- 0.1.2
* Upgrade deps
- 0.1.1

View File

@ -25,7 +25,7 @@ def chain_dir_for(chain_spec, base_dir=default_base_dir):
class FileStore:
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_bytes = bytes.fromhex(tx_hash_dirnormal)
self.tx_raw_dir.add(tx_hash_bytes, raw)
@ -62,10 +62,10 @@ class FileStore:
f.close()
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)
rcpt_src = tx.result.src
rcpt_src = tx.rcpt_src()
logg.debug('rcpt {}'.format(rcpt_src))
if rcpt_src != None:
rcpt_src = json.dumps(rcpt_src).encode('utf-8')
@ -79,7 +79,7 @@ class FileStore:
num_bytes = block.number.to_bytes(8, 'big')
self.block_hash_dir.add(hash_bytes, num_bytes)
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)

View File

@ -1,4 +1,4 @@
hexathon~=0.1.7
jsonrpc-std~=0.1.0
leveldir~=0.3.0
chainlib-eth~=0.3.0
chainlib-eth~=0.2.0

View File

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