Ivan Stanković

Results 27 issues of Ivan Stanković

Add a soft-restart feature that would allow the client to self restart from the outer layer (cli) in case of an exception, removing the need for the user to setup...

Provide notification to the user when we detect that a network connection was lost.

Currently it seems that one has to specify both `--development-environment` and `--environment-type` options in order to get a working config. Otherwise one might end up with a strange config that...

I tried interrupting (Ctrl-C) my Raiden instance while I had a pending transfer and could not get the instance to exit in a reasonable amount of time: ``` 2021-06-08 09:58:07.431396...

It does not make sense to reduce the block batch size if we are fetching less than block batch size anyway (e.g. a single block at a time).

The private routing mode is broken since the recent metadata changes landed. We should at least document the current state and warn the user about it. We should also consider...

After deleting my node's database, I started raiden again and got the following exception: ``` Traceback (most recent call last): File "/home/ivan/src/raiden/raiden/ui/cli.py", line 724, in _run run_services(kwargs) File "/home/ivan/src/raiden/raiden/ui/runners.py", line...

geth will not return memory content unless enableMemory is set to true, which will cause _get_memory to fail. This can be reproduced by provoking a typed error in a contract...

Consider the following simple program: ```python from dataclasses import dataclass import apischema @dataclass class Foo: d: dict[str, int] d = {} foo = Foo(d=d) print(d is apischema.serialize(foo)['d']) ``` This program...

When a large number of transactions is incoming, the notification bubbles can be annoying and get in the way. It would be nice to have a way to disable them,...

feature