Jason Carver
Jason Carver
* py-evm Version: master ### What is wrong? I tried to request data on a light client, when I wasn't connected to any peers. As expected, trinity raised a `NoConnectedPeers`...
`py_ecc/fields/__init__.py` has a lot of duplications and is at high risk of typos (like importing the coeffs or field modulus from the wrong curve). Let's think about alternatives to this...
### What is wrong? If I read the current implementation of `FQP.__eq__` correctly, it returns `True` for this test: ```py FQP([1, 2, 3], ...) == FQP([1, 2], ...) ``` which...
For a follow-up PR: I think this could be made a tiny bit more readable by adding a `copy()` method that takes the new coefficients, turning the line into: ```py...
Note to self. Something like: Write this to index.js ``` javascript var ipfs = require('ipfs-api')(); function store() { var toStore = document.getElementById('source').value; //TODO un-break this call: ipfs.add(new Buffer(toStore), function (err,...
Would you accept a pull request converting this to python 3?
I'd love some guidance on how to get `pytest --last-failed` to play nice with ptw. Right now, if the last failed tests succeeds, then ptw sits patiently until the next...
PTW reruns pytest 2-3 times in a row on every file save for me, in vim. Vim makes three changes on one save: moves `file` to `file~`, then creates `file`,...
The `bytes` type isn't listed here: https://pyd.readthedocs.io/en/latest/conversion.html#d-to-python What D type should I use to return a `bytes` value? `string` isn't an option, because I need to support arbitrary data, which...
## What was wrong? Type annotations aren't being enforced. There are many un-annotated methods, etc. ## How was it fixed? Started in, but have to attend to other things. If...