Andrew Toth
Andrew Toth
Can't we have progress updated on its own thread? It would just listen on a channel for height updates or to show commit progress and show `.`, `..`, `...`, repeating...
Right, I meant spinner. Sorry for the confusion. I understand we can't show progress of how far along, but we can show to the user that the application is not...
The library `oxhttp` creates a new `TcpStream` connection for every request, which unfortunately breaks on Macs (https://github.com/apoelstra/rust-jsonrpc/issues/67). I tested a rewritten version copying `SimpleHttpTransport` from `rust-jsonrpc`, but it unfortunately has...
Ok update on this, I switched out `oxhttp` with `hyper`. This does two things - hyper pools connections and reuses them for requests if they are going to the same...
@tzarebczan awesome! Did you also have #1357 reverted? Otherwise it doesn't use this feature. What about #1516, did you try with that? If not, that would make sense why you...
Closing in favor of https://github.com/casey/ord/pull/1759
This can be fixed by merging #1516 and #1636 and then reverting #1357.
Did you start bitcoind with `-rest` or add `rest=1` in `bitcoin.conf`?
If you run with `RUST_LOG=warn` before the `ord` command does it warn that it can't connect to REST?
Ok, the first blocks are the slowest because every input has to be fetched. As it indexes more blocks, it will already have the previous inputs so less inputs need...