chaind-eth

Queue server for ethereum
Log | Files | Refs | README | LICENSE

commit 41ac66f9d250b252a0431ef436ca457554498852
parent c35957275c6533c3244b3a41bb310bea57f06315
Author: nolash <dev@holbrook.no>
Date:   Sat, 17 Jul 2021 07:17:19 +0200

Correct deps

Diffstat:
Mrequirements.txt | 3++-
Arun_tests.sh | 10++++++++++
2 files changed, 12 insertions(+), 1 deletion(-)

diff --git a/requirements.txt b/requirements.txt @@ -1,3 +1,4 @@ -chaind<=0.0.1,>=0.0.1a3 +chaind<=0.0.1,>=0.0.1a4 hexathon~=0.0.1a7 chainlib-eth<=0.0.5,>0.0.4 +#chainlib-eth~=0.0.5a4 diff --git a/run_tests.sh b/run_tests.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +set -e +set -x +export PYTHONPATH=${PYTHONPATH:.} +for f in `ls tests/*.py`; do + python $f +done +set +x +set +e