heikoheiko
heikoheiko
currently the buckets are queried for the result of lookup requests, but this drops part of the response.
Is there a different way, other than accessing a private member like in below snippet? ``` structlog.stdlib.TRACE = TRACE = 5 structlog.stdlib._NAME_TO_LEVEL['trace'] = TRACE logging.addLevelName(TRACE, "TRACE") ``` https://github.com/ethereum/pyethereum/issues/202
My use case here is, that I have one special processor wich forwards events to listeners, independent of the loglevel. in order to check if the logger 'is active' i...
There is also: https://github.com/ethereum/pyethapp/blob/develop/pyethapp/rpc_client.py which has support for python ABI contract proxies: https://github.com/ethereum/pyethapp/blob/develop/pyethapp/rpc_client.py#L219 Any ideas on the best way to merge these efforts?
Client requests, pays and buffers chunks of data. https://asciinema.org/a/3132 https://github.com/asciinema/asciinema/blob/master/asciinema/player.py
For some applications bidirectional channels could be useful. Bidirectional channels are composed of two simple channels. But the logic during settlement and validating payment capacity is changed such that the...
Use cases where a payment must come with some signed extra data?
Hi, when trying to access via http i get "Unsupported media type" as a return value. running with `ethersim` ``` from pyethapp import rpc_client c = rpc_client.JSONRPCClient(8101) c.blocknumber() sent: {...
Failing Test: https://github.com/ethereum/tests/blob/develop/StateTests/stPreCompiledContracts.json#L3572 This also failed in eth++: https://github.com/ethereum/cpp-ethereum/issues/2544