chainlib-eth

Ethereum implementation of the chainlib interface
Log | Files | Refs | README | LICENSE

commit daef7e915dc3ee79ccc1f7d4e724671513a92ce9
parent af14af1ae57f539dc982e8413c98b4069b1840b4
Author: lash <dev@holbrook.no>
Date:   Sun,  6 Aug 2023 13:54:16 +0100

Implement batch limit config flag

Diffstat:
Mchainlib/eth/data/config/config.ini | 1+
Mchainlib/eth/runnable/block.py | 1-
Mrequirements.txt | 2+-
Msetup.cfg | 2+-
4 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/chainlib/eth/data/config/config.ini b/chainlib/eth/data/config/config.ini @@ -7,6 +7,7 @@ scheme = http verify = 1 timeout = 10.0 proxy = +batch_limit = 1 [chain] spec = evm:berlin:1:ethereum diff --git a/chainlib/eth/runnable/block.py b/chainlib/eth/runnable/block.py @@ -114,7 +114,6 @@ settings = process_settings_local(settings, config) logg.debug('settings loaded:\n{}'.format(settings)) - def get_block(settings): hsh = None try: diff --git a/requirements.txt b/requirements.txt @@ -3,4 +3,4 @@ safe-pysha3==1.0.4 hexathon~=0.1.7 websocket-client==0.57.0 potaahto~=0.1.1 -chainlib~=0.4.17 +chainlib~=0.5.0 diff --git a/setup.cfg b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = chainlib-eth -version = 0.4.27 +version = 0.5.0 description = Ethereum implementation of the chainlib interface author = Louis Holbrook author_email = dev@holbrook.no