Jozef Henzl

Results 36 issues of Jozef Henzl

``` Traceback (most recent call last): File "/home/xoza/src/micropay/lib/python3.4/site-packages/gevent/greenlet.py", line 536, in run result = self._run(*self.args, **self.kwargs) File "/home/xoza/src/micropay/raiden-micropayment-service/microraiden/microraiden/channel_manager/blockchain.py", line 51, in _run self._update() File "/home/xoza/src/micropay/raiden-micropayment-service/microraiden/microraiden/channel_manager/blockchain.py", line 72, in _update current_block...

bug
channel manager

A lot of versions in `requirements.txt` is frozen, due to incompatibilities introduced by `web3`, `populus` and others. Our pypi package is currently uninstallable atm and Travis tests also fail. Populus...

bug

uRaiden currently uses hardcoded version string for the documentation. The docs generator should read the `microraiden/VERSION` file instead.

documentation

Provided example client is now very limited in its capabilities. To make development and testing easier, we should provide a more sophisticated app, similar to `curl` or `wget`. - [...

enhancement
m2m client
low hanging fruit

Microraiden should have better version tracking. Current situation: version is stored as `MICRORAIDEN_VERSION` in `constants.py` and is imported to `setup.py`. This causes `ImportError` when running any of `setup.py` commands if...

bug
packaging

Today I've tried to make Parity's dev chain work. My idea was it'd be nice to have a real chain/RPC interface to play with and run CI on. Ropsten is...

tests

With the new typescript library the `microraiden.js` must be compiled manually. We may want to check for its existence when starting the proxy and notify the user if it is...

webUI
proxy

It would be nice to have resource decorator that'll magically make it paywalled i.e. ```python @app.route("/paywall/") @app.paywalled(price=1) def paywalled_content(): .... ``` I am not sure how to implement it now...

enhancement

- [ ] add commandline argument `--network=` to the proxy - [ ] make sure correct address of default contract is used - [ ] check if the ethereum node...

enhancement
proxy

## Problem contract & token addresses are hardcoded in the `config.py` file, making it difficult to switch between networks. ## Proposal Something like a config singleton that will return proper...

enhancement