Move to chainlib-eth

This commit is contained in:
nolash 2021-06-28 09:08:56 +02:00
parent 1d0c7234eb
commit 0671e3faa9
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746
3 changed files with 14 additions and 1 deletions

View File

@ -1,5 +1,6 @@
* 0.0.10-pending
- Upgrade chainlib dependency, providing customizable jsonrpc id
- Move to chainlib-eth
* 0.0.9-unreleased
* 0.0.8-unreleased
* 0.0.7-unreleased

View File

@ -1 +1 @@
0.0.1
0.0.10

12
python/run_tests.sh Normal file
View File

@ -0,0 +1,12 @@
#!/bin/bash
set -e
set -x
for f in `ls tests/*.py`; do
python $f
if [ $? -gt 0 ]; then
exit 1
fi
done
set +x
set +e