Hoyt Helgaas
Hoyt Helgaas
```rust use electrum_client::{Client, ElectrumApi}; fn main() { let client = electrum_client::raw_client::RawClient::new(("blockstream.info", 143), None).unwrap(); let r = client.block_headers_subscribe().unwrap(); // print, but just once dbg!(r); loop { std::thread::sleep(std::time::Duration::from_secs(5)); let x = client.block_headers_pop().unwrap();...
### 🤔 This is a ... - [x] New feature ### 🔗 Related issue link ### 💡 Background and solution ### 📝 Changelog ### ☑️ Self-Check before Merge ⚠️ Please...
describe: When building the consignment file, if multiple seals exist, the previous ones will be overwritten.
**rust-analyzer version**: 0.3.2129-standalone **rustc version**: rustc 1.81.0 (eeb90cda1 2024-09-04) **editor or extension**: VSCode **relevant settings**: Default **repository link (if public, optional)**: [ldk-node](https://github.com/lightningdevkit/ldk-node) **code snippet to reproduce**: [this line](https://github.com/lightningdevkit/ldk-node/blob/1a6a2ca1d0327bece964f92a31e67921f13ef316/src/payment/bolt11.rs#L252) ```rust match...