Compare commits

...

21 Commits

Author SHA1 Message Date
nolash e52db0de35
Do not callback when none in token proofs check 2021-10-14 15:33:54 +02:00
nolash cc58735ff1
Do not link null callbacks for token proof check 2021-10-14 15:31:58 +02:00
nolash 4b8eae41f7
Allow empty proofs in token info task 2021-10-14 12:22:41 +02:00
nolash 8d571b51c5
More deps upgrades 2021-10-14 05:28:17 +02:00
nolash 13970ec332
bump version cic-eth 2021-10-13 15:14:55 +02:00
nolash 7e6cc5714d
Allow empty proof spec for tokens api 2021-10-13 15:13:43 +02:00
nolash 0f5bceb95b
Bump version cic-eth 2021-10-13 14:24:29 +02:00
nolash 159fd07d63 Revert "Another attempt at config files, dockerfile change"
This reverts commit 9d3f8bf1e3.
2021-10-09 17:22:23 +02:00
nolash 9d3f8bf1e3
Another attempt at config files, dockerfile change 2021-10-09 17:12:29 +02:00
nolash 2229154c2b
Add documentation 2021-10-09 16:55:05 +02:00
nolash 9637cb61f8
Add magic arg parsing for token lookup api 2021-10-09 16:21:03 +02:00
nolash 66f94ae694
Correct test default token task in unit test 2021-10-09 15:06:21 +02:00
nolash 1e65ea8511
reinstate celery seesion worker in token metadata test 2021-10-09 14:38:16 +02:00
nolash 21972e9df5
Complete token lookups with proofs 2021-10-09 14:18:10 +02:00
nolash 77fe41da4b
Revert to multi-token task queue entry point for token api call 2021-10-09 13:39:33 +02:00
nolash 6098374a4e
POC single token task chain for token proof lookups 2021-10-09 13:22:14 +02:00
nolash f648d3ee68
WIP token info proof verify 2021-10-09 00:48:20 +02:00
nolash 7e2857d1e7
Add separate generic task for proof verification 2021-10-08 20:19:15 +02:00
nolash df21db958b
Move token tasks to cic_eth.eth.erc20 2021-10-08 19:21:47 +02:00
nolash 6ccffb15b6
Add trust check to token fetch in cic-eth task 2021-10-08 18:39:22 +02:00
nolash 53e9c63698
Add token api metadata getter (first without okota) 2021-10-08 16:04:13 +02:00
1 changed files with 5 additions and 2 deletions

View File

@ -524,8 +524,11 @@ def verify_token_info(self, tokens, chain_spec_dict, success_callback, error_cal
],
queue=queue,
)
s.link(success_callback)
s.on_error(error_callback)
if success_callback != None:
s.link(success_callback)
if error_callback != None:
s.on_error(error_callback)
s.apply_async()
return tokens