Jeremy Rand
Jeremy Rand
Minification could decrease our binary size, which might plausibly be attractive to Tor Browser. See the following tools: * https://github.com/liftoff/pyminifier (GPLv3, no longer maintained) * https://github.com/dflook/python-minifier (MIT, maintained) As a...
If the network connection between Tor and the WAN is extremely slow, downloading multiple chunks simultaneously can cause each chunk download operation to time out. This causes the IBD to...
Currently, our tarballs contain both the XML source of our Qt forms, and the compiled Python of those forms. This violates [Debian policy](https://wiki.debian.org/UpstreamGuide#Pristine_Upstream_Source): > The source code archive should contain...
We should add the following warning to the "Configure New Name" dialog: > The registration procedure will take approximately 2 hours and 10 minutes. You can close Electrum-NMC in the...
The codebase has quite a few instances of `COIN // 100` to indicate the 0.01 NMC that's locked inside name outputs. We should factor this out into a constant (probably...
The `Sweep private keys` dialog doesn't appear to support name outputs. We should fix that.
`UNOList` shows a `Status` of `Registration Pending` for `name_new` outputs. It is non-obvious to users how long they'll need to wait for the registration to complete. Text such as `Registration...
The `name_history` RPC method from Namecoin Core needs to be implemented in Electrum-NMC. I think it could be done something like this: ~~~ sh = electrum.names.name_identifier_to_scripthash(b'd/wikileaks') result = await network.get_history_for_scripthash(sh)...
We should add an automated test (possibly as part of the Regtest Travis job) to make sure `name_autoregister` works properly.