Bitcoin Core Github
44 subscribers
121K links
Download Telegram
πŸ’¬ willcl-ark commented on issue "RFC: Miniscript integration":
(https://github.com/bitcoin/bitcoin/issues/18040#issuecomment-1465966738)
@michaelfolkson do you think this can be closed now that we have #24149 (amongst other capabilities)?
πŸ’¬ stickies-v commented on issue "rest: Further API and code cleanup with query parameters":
(https://github.com/bitcoin/bitcoin/issues/25752#issuecomment-1465971535)
Closing this (and draft PRs). I still think the suggested changes are an improvement, and that the state of our current interfaces is an impediment to (new) developers building on Bitcoin Core instead of using third-party services, but as evidenced by my lack of activity on this issue I don't feel anymore like this is currently a particularly worthwhile endeavour given current development resources and other active projects that require developer attention.

Moreover, I think I'm now leaning m
...
βœ… stickies-v closed an issue: "rest: Further API and code cleanup with query parameters"
(https://github.com/bitcoin/bitcoin/issues/25752)
πŸ’¬ stickies-v commented on pull request "rest: Move format string from path-like parameter to query parameter":
(https://github.com/bitcoin/bitcoin/pull/25753#issuecomment-1465972038)
Closing as per https://github.com/bitcoin/bitcoin/issues/25752#issuecomment-1465971535
βœ… stickies-v closed a pull request: "rest: Move format string from path-like parameter to query parameter"
(https://github.com/bitcoin/bitcoin/pull/25753)
πŸ’¬ stickies-v commented on pull request "rest: Extend HTTPRequest interface to support querying path (parameters)":
(https://github.com/bitcoin/bitcoin/pull/25754#issuecomment-1465972292)
Closing as per https://github.com/bitcoin/bitcoin/issues/25752#issuecomment-1465971535
βœ… stickies-v closed a pull request: "rest: Extend HTTPRequest interface to support querying path (parameters)"
(https://github.com/bitcoin/bitcoin/pull/25754)
πŸ’¬ stickies-v commented on pull request "rest: Use from_blockhash and txdetails query parameters":
(https://github.com/bitcoin/bitcoin/pull/25755#issuecomment-1465972431)
Closing as per https://github.com/bitcoin/bitcoin/issues/25752#issuecomment-1465971535
βœ… stickies-v closed a pull request: "rest: Use from_blockhash and txdetails query parameters"
(https://github.com/bitcoin/bitcoin/pull/25755)
πŸ’¬ stickies-v commented on pull request "rest: Remove support for a number of `-deprecatedrest` options":
(https://github.com/bitcoin/bitcoin/pull/25756#issuecomment-1465972551)
Closing as per https://github.com/bitcoin/bitcoin/issues/25752#issuecomment-1465971535
βœ… stickies-v closed a pull request: "rest: Remove support for a number of `-deprecatedrest` options"
(https://github.com/bitcoin/bitcoin/pull/25756)
πŸ’¬ glozow commented on pull request "Add feerate histogram to getmempoolinfo":
(https://github.com/bitcoin/bitcoin/pull/21422#discussion_r1133744544)
fyi you can get the same information for each transaction by calling `infoAll()`. I think it's not great practice for outside callers to reach into `mapTx`
πŸ’¬ MarcoFalke commented on issue "RFC: Miniscript integration":
(https://github.com/bitcoin/bitcoin/issues/18040#issuecomment-1465993119)
Closing for now. If there are new discussions or feature request (or ones missed here), a new issue can be created or this one reopened.
βœ… MarcoFalke closed an issue: "RFC: Miniscript integration"
(https://github.com/bitcoin/bitcoin/issues/18040)
βœ… MarcoFalke closed a pull request: "[WIP] DRAFT NOMERGE Tidy up RPCTxSerializationFlags"
(https://github.com/bitcoin/bitcoin/pull/23599)
πŸ‘ MarcoFalke approved a pull request: "Avoid integer overflow in CheckDiskSpace"
(https://github.com/bitcoin/bitcoin/pull/27235)
lgtm
πŸ’¬ MarcoFalke commented on pull request "Avoid integer overflow in CheckDiskSpace":
(https://github.com/bitcoin/bitcoin/pull/27235#discussion_r1133824606)
```suggestion
self.log.info("Test that a manually pruned node does not run into integer overflow on first start")
```

nit: Not sure if more context is helpful. Otherwise, I suspect this test will be removed in the future due to being redundant.
πŸ’¬ MarcoFalke commented on pull request "Avoid integer overflow in CheckDiskSpace":
(https://github.com/bitcoin/bitcoin/pull/27235#discussion_r1133825558)
Can also add my test to check that no false warning will be issued anymore? Integer overflow isn't the only issue you are fixing here.
πŸ’¬ desirepl commented on issue "Bitcoin ignores datadir and blocksdir parameter in .conf":
(https://github.com/bitcoin/bitcoin/issues/27246#issuecomment-1466048126)
I see only translation changes 2 hours ago.
I'm not so familiar with git, so checked code updates here at main and other branches. Only your updates to translations 2 hours ago. Seems doing something wrong or don't understand, ΠΊΠΎΡ€ΠΎΡ‡Π΅.
πŸ’¬ MarcoFalke commented on pull request "wallet: ensure the wallet is unlocked when needed for rescanning":
(https://github.com/bitcoin/bitcoin/pull/26347#discussion_r1133856319)
> However, for me this no longer fails without the fix.

For me, nothing fails. Unless I specifically add a manual sleep on the code before the fix:

```diff
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp
index eed40f9462..d5b5af0d4c 100644
--- a/src/wallet/wallet.cpp
+++ b/src/wallet/wallet.cpp
@@ -1851,6 +1851,8 @@ CWallet::ScanResult CWallet::ScanForWalletTransactions(const uint256& start_bloc
WalletLogPrintf("Rescan started from block %s... (%s)\n", start_block.ToS
...