Add allowance check and transferFrom task

This commit is contained in:
Louis Holbrook
2021-06-30 18:15:40 +00:00
parent c852f41d76
commit 6464f651ec
23 changed files with 361 additions and 22 deletions

View File

@@ -1 +1 @@
cic-base==0.1.3a3+build.4aa03607
cic-base==0.1.3a3+build.984b5cff

View File

@@ -14,8 +14,11 @@ repos=(../../cic-cache ../../cic-eth ../../cic-ussd ../../data-seeding ../../cic
for r in ${repos[@]}; do
f="$r/requirements.txt"
>&2 echo updating $f
pyreq-update $f base_requirement.txt -vv > $t
cp $t $f
f="$r/test_requirements.txt"
>&2 echo updating $f
pyreq-update $f base_requirement.txt > $t
pyreq-update $f base_requirement.txt -vv > $t
cp $t $f
done