Jason Rhinelander
Jason Rhinelander
Current dev introduces a few regressions in log-level handling: - The `--log-level` (or `log-level=...` in the config file) can no longer be set to a categorized string, but only to...
RPC argument parsing (on dev) is currently doing things like this: ```C++ get_values(in, "host", set_bans.request.host); get_values(in, "ip", set_bans.request.ip); get_values(in, "seconds", set_bans.request.seconds); get_values(in, "ban", set_bans.request.ban); ``` But this is broken because...
Someone trying to get oxend to build on an ancient machine (i.e. xenial) recently contacted me and reported being quite mislead by some of the info in our README; looking...
Having worked on the open group server a bit recently, I've noticed that getting into an open group (especially on mobile!) is a fairly painful experience: to load one up...
Wallet2 doesn't properly parse staking information off the blockchain. As a consequence, if you restore a wallet, we can identify it as a staking transaction, but we can't extract the...
I couldn't find anywhere in the RPC that exports the current ONS fees; we should add it. (Probably as part of the #1477 changes)
People sometimes run into an issue (particularly after moving hosts) where they have forgotten to update the service-node-public-ip setting in the config file. This causes problems, of course, because that...
Currently our testing quorum size is `max{1%, 50}`. On mainnet the percentage here is probably too low; 50 currently is just under 3%, and testing intervals already seem a *bit*...
This (still very much draft work in progress!) PR is switching the crypto fundamentals to libsodium implementations, rather than needing to provide a full ed25519 implementation inside loki itself. Aside...
Currently storage server is a bit difficult to diagnose because of the distributed set of reports on its reachability: with access to only a single node you can't learn anything...