-
Investigate ways to create a sync method for LDK `Listen` interface and BDK `Wallet/Database`
Could potentially re-use the BDK RPC Blockchain as an LDK block source but you'd end up with LDK SPV cl…
-
Mention it uses BigInt (for checksums)
If `BigInt` support is not possible, then remove the checksum before passing the descriptor to the `parse` function.
-
It would be nice to get rid of the (unused) java check/requirement during bootstrap.
Currently, bootstrap checks for javac, but nothing actually uses it in fink. In base packages, libgettext8-shlib…
-
Code to replicate:
```js
a = {}
a.b = {}
a.b.c = {}
(@a.b).c
```
![image](https://user-images.githubusercontent.com/15922601/208761831-ddde1356-ce5d-42de-99aa-07eae258dc8d.png)
-
Surprised this wasn't found much earlier.
This line https://github.com/rust-bitcoin/rust-secp256k1/blob/master/secp256k1-sys/src/lib.rs#L881 mangles public keys when they're being parsed in fuzzing…
-
We should IMO aim to have integration tests that hit the whole public API before we release `v1.0` versions. Up to now we have been relying on rustdoc tests to give us full API coverage but because of…
-
greybel-vs, probably greybel-language server bug?
Pasting this code: a = (a+a)[:]
Leads to these errors, and breaks hovering:
TypeError: Cannot read properties of null (reading 'setLine')
…
-
When writing a new smart contract using Taproot I came across a use case that I suspect may be more common as tapscript gains adoption: if the counterparty is supposed to provide a script for fallback…
-
From what I can tell, to infer a descriptor requires creating an `Interpreter`, then calling `.inferred_descriptor()`. However, to build an interpreter, requires a [BitcoinKey](https://github.com/rus…
-
**Describe the enhancement**
Currently there is a `sign_psbt` function that works great, however, it does not give us fine grained control over which inputs are signed, it just signs everything it …