Ecosyste.ms: Timeline
Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.
shaavan pushed 2 commits to i3455 shaavan/rust-lightning
shaavan created a branch on shaavan/rust-lightning
i3455 - A highly modular Bitcoin Lightning library written in Rust. It's rust-lightning, not Rusty's Lightning!
shaavan created a branch on shaavan/rust-lightning
ci - A highly modular Bitcoin Lightning library written in Rust. It's rust-lightning, not Rusty's Lightning!
shaavan created a branch on shaavan/rust-lightning
ci - A highly modular Bitcoin Lightning library written in Rust. It's rust-lightning, not Rusty's Lightning!
shaavan created a branch on shaavan/rust-lightning
ci - A highly modular Bitcoin Lightning library written in Rust. It's rust-lightning, not Rusty's Lightning!
shaavan pushed 10 commits to omf-20 shaavan/rust-lightning
- Move `create_offer_builder` to `OffersMessageFlow` da307f3
- Move create_refund_builder to OffersMessageFlow 30133fa
- Move pay_for_offer to OffersMessageFlow 6a8c5f8
- Move request_refund_payment to OffersMessageFlow 1fc5b01
- Move pay_for_offer_human_readable to OffersMessageFlow 9e16618
- Move DNSResolverMessageHandler impl to OffersMessageFlow 5a50c21
- Move create_blinded_path_using_absolute_expiry to flow.rs 78d6b00
- Move pending_offers_message to flows.rs adb2aa4
- Move pending_dns_onion_messages to flow.rs 0bd45c8
- Move send_payment_for_bolt12_invoice to flow.rs 9de9903
shaavan created a comment on a pull request on lightningdevkit/rust-lightning
**Updated from** [pr2380.09](https://github.com/shaavan/rust-lightning/commits/pr2830.09) to [pr2830.10](https://github.com/shaavan/rust-lightning/commits/pr2830.10) ([diff](https://github.com/shaa...
shaavan pushed 54 commits to #1970/custom-tlvs shaavan/rust-lightning
- Stop sending `channel_update` in onion failures Per <https://github.com/lightning/bolts/pull/1173>. Fixes #3277 9e30f25
- Make `test_durable_preimages_on_closed_channel` more robust Makes `test_durable_preimages_on_closed_channel` more ro... aba57bb
- Remove next_funding_txid tlv from channel read/write We want to remove this before release so that we can work on a ... 7177acb
- Correct return value for apply_post_close_monitor_update A recent change accidentally inverted the returned monitor ... 857d363
- Merge pull request #3426 from morehouse/correct_return_value Correct return value for `apply_post_close_monitor_update` ff36405
- Merge pull request #3345 from tankyleo/onion-channel-updates Stop sending `channel_update` in onion failures 70ace81
- Merge pull request #3417 from dunxen/2024-11-removenextfundingtxidpersist Remove `next_funding_txid` tlv from `Chann... 12920d8
- Clean channelmonitor.rs code * Replace deprecated `u64::max_value()` * Use `Option::is_some()` * Use `Iterator::any(... 553e6c7
- Fix `ISO 4712` typo to `ISO 4217` fa731ae
- Take circular `GossipVerifier` reference by `Arc` Our current architecture requires `GossipVerifier`'s type signatur... aca3979
- Merge pull request #3433 from andrei-21/fix/iso-typo Fix `ISO 4712` typo to `ISO 4217` 846342e
- Turn `IrrevocablyResolvedHTLC` comment into a Rust comment 8ebda06
- Fix `indexmap` pin as 2.7.0 was just released I heard you like pins, so I pinned you pin so you can pin while you pin. d80d1dd
- Add the ability to fetch a probability from live liquidity bounds We already expose the estimated success probabilit... b1770ba
- Add a fallback-allowed param to historical success prob estimator `historical_estimated_payment_success_probability`... d3efe5c
- Merge pull request #3434 from tnull/2024-12-fix-indexmap-pin Fix `indexmap` pin as 2.7.0 was just released 7cfcb14
- Drop unnecessary elided lifetime name from `get_best_block` .. which recently started to yield a warning on the `bet... 2ca1d8f
- Merge pull request #3420 from TheBlueMatt/2024-11-live-success-prob Add the ability to fetch a probability from live... e1e8ce0
- Merge pull request #3437 from tnull/2024-12-drop-elided-lifetime-name Drop elided lifetime name from `get_best_block` a92084b
- Drop log-limiting features Previously, LDK offered two ways to limit log outputs: filtering during runtime client-si... f6af8e3
- and 34 more ...
shaavan created a tag on shaavan/rust-lightning
pr2830.10 - A highly modular Bitcoin Lightning library written in Rust. It's rust-lightning, not Rusty's Lightning!
shaavan created a branch on shaavan/rust-lightning
ci - A highly modular Bitcoin Lightning library written in Rust. It's rust-lightning, not Rusty's Lightning!
shaavan created a branch on shaavan/rust-lightning
omf-20 - A highly modular Bitcoin Lightning library written in Rust. It's rust-lightning, not Rusty's Lightning!
shaavan created a branch on shaavan/rust-lightning
ci - A highly modular Bitcoin Lightning library written in Rust. It's rust-lightning, not Rusty's Lightning!
shaavan pushed 15 commits to main shaavan/rust-lightning
- Make `test_durable_preimages_on_closed_channel` more robust Makes `test_durable_preimages_on_closed_channel` more ro... aba57bb
- Bump `esplora-client` to 0.11 .. the most-recent release, which also dropped the `async-std` dependency in favor of ... 850952c
- When removing `PeerState` check for in-flight mon updates deeply When deciding if we should remove a `PeerState` ent... f9374b8
- Don't generate dup force-close `ChannelMonitorUpdate`s on startup On startup, if we have a channel which was closed ... d33687d
- Handle events immediately if we are running during block connection During block connection, we cannot apply `Channe... 385799f
- Add additional variants to `handle_new_monitor_update!` In the coming commits we'll start handling `ChannelMonitorUp... d1c340a
- Add monitor update handling to `update_maps_on_chan_removal` Closing channels requires a two step process - first `u... 70a3751
- Properly enforce that all `ChannelMonitorUpdate`s are ordered c99d3d785dd78f594837d283636b82222c3b9ef1 updated `Chan... 4766e99
- Check in-flight updates before completing events on closed chans When we handle a `ChannelMonitorUpdate` completion ... b50354d
- Persist unresolved ChannelMonitors on empty height change 6f9300f
- Merge pull request #3413 from TheBlueMatt/2024-11-async-persist-claiming-from-closed-chan-1 Misc updates to tee up a... b96b19a
- Merge pull request #3442 from arik-so/archive-monitor-persistence-trigger Persist unresolved ChannelMonitors on empt... 020be44
- Log before and after `Event` processing calls At various points we've had issues where `Event` processing for a user... e2b964e
- Merge pull request #3449 from TheBlueMatt/2024-12-event-processing-logging Log before and after `Event` processing c... fe1cf69
- Merge pull request #3348 from tnull/2024-10-bump-esplora-client Bump `esplora-client` to 0.11 abf72a5
shaavan created a branch on shaavan/rust-lightning
ci - A highly modular Bitcoin Lightning library written in Rust. It's rust-lightning, not Rusty's Lightning!