Anthony Towns

Results 31 issues of Anthony Towns

Quick patch that removes a bunch of "auto" usage for your consideration. The auto->CKeyID change is against the merged segwit patches hence the fake rebase. Remaining uses are: - ~70...

Would be nice if the vbytes/second graphs at https://mempool.space/graphs/mempool#3y had a moving average to smooth the daily (or weekly?) fluctuations out.

I was trying out liquidtestnet and found I couldn't actually maintain a connection to anyone. I believe this is due to bitcoin/bitcoin#20564 having been backported to elements-0.21 in #1029 but...

New BIP
Needs number assignment

There have been a couple of old attempts to enable parallel compact block downloads, see #9447 and #10984. There are additional notes in #16172. The idea is that we currently...

Feature

I think the only place we currently test that spending a bare multisig utxo is okay is in `AreInputsStandard` in `script_p2sh_tests.cpp`, but this only checks that `AreInputsStandard()` passes, it doesn't...

Tests

Adds the ability to link particular options to one or more subcommands, and uses this feature in `bitcoin-wallet`. Separates out the help information for subcommand-specific options (duplicating it if an...

Increases the encapsulation/modularity of the versionbits code, moving more of the logic into the versionbits module rather than having it scattered across validation and rpc code. Updates unit/fuzz tests to...

Refactoring

Adds a `script_flags` field to the output of the `getdeploymentinfo` RPC that lists the flags selected by `GetBlockScriptFlags()`. This can be useful for seeing the detailed consequences of soft-fork activation...

RPC/REST/ZMQ
CI failed

Replace `LogPrint*` functions with severity based logging functions: * `LogInfo(...)`, `LogWarning(...)`, `LogError(...)` for unconditional (uncategorised) logging (replaces `LogPrintf`) * `LogDebug(CATEGORY, ...)` and `LogTrace(CATEGORY, ...)` for conditional logging (replaces `LogPrint`) *...

Utils/log/libs