Richard Kiss
Richard Kiss
I believe issue29714 is fixed by https://github.com/boramalper/magnetico/pull/74
I agree with @ad-m , magnet hashes are enough.
Try changing line 74: https://github.com/ad-m/magnetico/blob/broken-test/magneticod/magneticod/persistence.py#L74 Replace `.decode("utf-8")` with `.decode("utf-8", "replace")` (or `.decode("utf-8", "ignore")`. Example: ``` >>> b'\x37\x39\xcf\xf1\x45'.decode("utf8") Traceback (most recent call last): File "", line 1, in UnicodeDecodeError: 'utf-8' codec...
It's true, the documentation is out of date and things are changing quickly. My apologies. As you've noticed @afk11, everything is moving to under "network" so you use drill down...
I agree that it would be useful, as it seems likely this will be a significant part of bitcoin's future. I haven't had much time lately to research new things,...
This is now pretty easy to do now in `master`... if you're still interested, let me know, and I can write a bit of sample code.
I'm not a Windows user. You want to set your environment variable `PYCOIN_BTC_PROVIDERS` to something like `PYCOIN_BTC_PROVIDERS="blockchain.info blockexplorer.com chain.so"`, and then `tx` will access these APIs.
Yeah, `-j` came along as a generalization of `-a` and `-W`. I should probably unify the implementations (if I haven't already, not sure).
The `slope = ((3 * x0 * x0 + self._a) * self.inverse_mod(2 * y0, p)) % p` is the special case for doubling. If `x0` and `x1` are the same,...
The way this is done has been changed. Look at https://github.com/richardkiss/pycoin/blob/master/pycoin/symbols/btg.py for an example on how to create a new alt-coin.