-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
0.0.123.1 #126
0.0.123.1 #126
Conversation
Up until now we'd always relied on `Vec`s being imported through a prelude, but LDK sometimes forgets to keep doing that. Thus, here we move to also accepting `alloc::vec::Vec` by mapping it to `Vec` during name resolution.
671222d
to
636543d
Compare
Ugh, looks like we can't do |
Hum, I'm a bit confused by this: Are we positive we still need the pin? Also, I'm a bit confused why we need it exactly and why need to build with |
The issue will only trigger when trying to build for macOS from Linux (which seems to be the only way to get deterministic builds for macOS, see the CI file). It's cause -Zbuild-std doesn't use the Cargo lock file and fails with newer cc. The only way I know how to fix this is to delete the new cc out of the local cargo registry and build with --offline. |
We can figure out lightning-transaction-sync in a later release. |
😩 |
Doesn't have to take long, I'm just at a loss for what we can practically do here, at least until we get a different HTTP client that doesn't need |
Yeah, although it's not the HTTP client that pulls in the dependency here, but |
|
Fixes #125
Fixes #109
Also adds
lightning-transaction-sync
to the bindings.