Avoid building routes over previously failed blinded payment paths.
[rust-lightning] / lightning / src / routing /
2024-01-17 Valentine WallaceAvoid building routes over previously failed blinded...
2024-01-17 Valentine WallaceStore previously failed blinded paths on outbound payme...
2024-01-17 Valentine WallacePersist previously failed blinded paths in RouteParameters.
2024-01-08 Matt CoralloMerge pull request #2802 from TheBlueMatt/2023-12-no...
2024-01-08 Matt CoralloMerge pull request #2808 from TheBlueMatt/2023-12-fuzzi...
2024-01-08 Elias RohrerMerge pull request #2799 from benthecarman/tx-sync...
2024-01-02 Matt CoralloMove `CandidateRouteHop` enum variant fields into structs 2023-12-no-pub-enum
2023-12-20 Matt CoralloMerge pull request #2788 from tnull/2023-12-enforce...
2023-12-18 Elias RohrerFix unused import warnings in `c_bindings`
2023-12-15 Matt CoralloMerge pull request #2798 from TheBlueMatt/2023-12-119...
2023-12-15 Wilmer PaulinoMerge pull request #2795 from TheBlueMatt/2023-11-robus...
2023-12-15 Matt CoralloUse correct default value when comparing to `htlc_maxim...
2023-12-15 Matt CoralloMerge pull request #2781 from jkczyz/2023-09-multihop...
2023-12-15 Jeffrey CzyzFix build warning
2023-12-15 Jeffrey CzyzUse one-hop blinded paths only for announced nodes
2023-12-15 Jeffrey CzyzAdd create_blinded_payment_paths to Router
2023-12-15 Jeffrey CzyzRequire any Router also implements MessageRouter
2023-12-15 Matt CoralloMerge pull request #2656 from TheBlueMatt/2023-09-scori...
2023-12-15 Elias RohrerMerge pull request #2779 from G8XSU/2706-stop
2023-12-13 Matt CoralloDrop fake time advancing in scoring tests 2023-09-scoring-decay-timer
2023-12-13 Matt CoralloDrop half-life-based bucket decay in `update_history_bu...
2023-12-13 Matt CoralloDrop warning about mixing `no-std` and `std` `Probabili...
2023-12-13 Matt CoralloAdd a benchmark for decaying a 100k channel scorer...
2023-12-13 Matt CoralloDrop now-trivial `decayed_offset_msat` helper utility
2023-12-13 Matt CoralloDrop now-unused `T: Time` bound on `ProbabilisticScorer`
2023-12-13 Matt CoralloUse `Duration` based time info in scoring rather than...
2023-12-13 Matt CoralloPipe `Duration`-based time information through scoring...
2023-12-13 Matt CoralloUpdate history bucket last_update time immediately...
2023-12-13 Matt CoralloStop decaying liquidity information during bounds-based...
2023-12-13 Matt CoralloStop decaying historical liquidity information during...
2023-12-13 Matt CoralloImpl decaying in `ProbabilisticScorer::decay_liquidity_...
2023-12-13 Matt CoralloTrack historical liquidity update time separately from...
2023-12-13 Matt CoralloAdd a scoring decay method to the `ScoreUpdate` trait
2023-12-13 Matt CoralloPass the current time through `ScoreUpDate` methods
2023-12-13 Matt CoralloDepend on `libm` in `no-std` for `powf`(64)
2023-12-13 valentinewallaceMerge pull request #2688 from valentinewallace/2023...
2023-12-12 Matt CoralloMerge pull request #2775 from benthecarman/sign-psbt
2023-12-11 Matt CoralloMerge pull request #2637 from Sharmalm/2348
2023-12-11 Wilmer PaulinoMerge pull request #2782 from TheBlueMatt/2023-12-check...
2023-12-11 Matt CoralloMerge pull request #2681 from tnull/2023-10-bump-msrv...
2023-12-08 Matt CoralloMerge pull request #2752 from valentinewallace/2023...
2023-12-08 Elias RohrerMerge pull request #2774 from TheBlueMatt/2023-12-2551...
2023-12-08 Matt CoralloPre-calculate heap element scores (retaining RouteGraph... 2023-12-2551-followups
2023-12-08 Matt CoralloReorder `PathBuildingHop` fields somewhat
2023-12-08 Matt CoralloMake `find_route`'s `dist` map elements fit in 128...
2023-12-08 Matt CoralloMake `CandidateRouteHop::PrivateHop::target_node_id...
2023-12-08 Matt CoralloMake `CandidateRouteHop` method docs somewhat more...
2023-12-08 Matt CoralloFix indentation in `router.rs` broken in a1d15ac1926f70...
2023-12-08 Matt CoralloRename `CandidateRouteHop::FirstHop::node_id` and make...
2023-12-08 Matt Corallo`#[inline]` `CandidateRouteHop` accessors
2023-12-08 Matt CoralloFix new unused warnings in `scoring.rs`
2023-12-08 Matt CoralloPrivatise `CandidateRouteHop::short_channel_id` as...
2023-12-08 Matt CoralloFix and re-enable the `remembers_historical_failures...
2023-12-08 Matt CoralloRename `DirectedChannelInfo::outbound` to `from_node_one`
2023-12-08 Matt CoralloRewrite docs in `CandidateRouteHop` to be somewhat...
2023-12-08 Matt CoralloMerge pull request #2723 from jkczyz/2023-11-direct...
2023-12-07 Matt CoralloMerge pull request #2691 from wpaulino/refactor-channel...
2023-12-06 Matt CoralloMerge pull request #2765 from TheBlueMatt/2023-12-2314...
2023-12-06 Elias RohrerMerge pull request #2762 from TheBlueMatt/2023-11-htlc...
2023-12-06 Matt CoralloMerge pull request #2551 from jbesraa/expose-CandidateR...
2023-12-05 jbesraaRemove `node_id` from `PathBuildingHop`
2023-12-05 jbesraaUse `CandidateRouteHop` as input for `channel_penalty_msat`
2023-12-05 jbesraaChange `CandidateRouteHop` functions visbility
2023-12-05 jbesraaAdd `source` and `target` fn's to `CandidateRouteHop`
2023-12-05 jbesraaAdd `source` and `target` to `DirectedChannelInfo`
2023-12-05 jbesraaAdd `outbound` flag to `DirectedChannelInfo`
2023-12-05 valentinewallaceMerge pull request #2764 from TheBlueMatt/2023-11-chach...
2023-12-05 Matt CoralloMerge pull request #2642 from Sharmalm/2346
2023-12-04 Wilmer PaulinoMerge pull request #2753 from TheBlueMatt/2023-11-inbou...
2023-12-04 Wilmer PaulinoMerge pull request #2771 from tnull/2023-12-log-details...
2023-12-04 Elias RohrerLog additional details when ignoring first hops
2023-12-02 Matt CoralloMerge pull request #2314 from henghonglee/issue-2292
2023-12-01 henghongleePass Record by value to Logger
2023-11-29 Wilmer PaulinoMerge pull request #2721 from TheBlueMatt/2023-11-log...
2023-11-27 Elias RohrerMerge pull request #2741 from shaavan/issue-2215
2023-11-23 Elias RohrerMerge pull request #2740 from wpaulino/rust-bitcoin...
2023-11-22 Wilmer PaulinoBump rust-bitcoin to v0.30.2
2023-11-16 Matt CoralloMerge pull request #2700 from Evanfeenstra/pub-htlc...
2023-11-15 Matt CoralloMerge pull request #2730 from benthecarman/invoice...
2023-11-15 Elias RohrerMerge pull request #2696 from TheBlueMatt/2023-10-no...
2023-11-14 Gursharan SinghMerge pull request #2727 from TheBlueMatt/2023-11-bette...
2023-11-14 Matt CoralloMerge pull request #2529 from TheBlueMatt/2023-08-shutd...
2023-11-14 Matt CoralloMerge pull request #2726 from shaavan/issue2712
2023-11-14 Elias RohrerMerge pull request #2716 from TheBlueMatt/2023-11-hash...
2023-11-14 Matt Corallo`derive(Hash)` for P2P messages 2023-11-hash-if-eq
2023-11-13 Matt CoralloMerge pull request #2544 from optout21/splicing-msgs0
2023-11-13 Matt CoralloMerge pull request #2732 from arik-so/2023/11/update...
2023-11-13 Matt CoralloMerge pull request #2708 from TheBlueMatt/2023-11-less...
2023-11-09 Matt CoralloAvoid allocating when checking gossip message signatures
2023-11-07 Matt CoralloMerge pull request #2702 from G8XSU/libFuzzer
2023-11-04 Matt CoralloReduce on-startup heap frag due to network graph map...
2023-11-02 Elias RohrerMerge pull request #2641 from alexanderwiederin/2585...
2023-10-30 valentinewallaceMerge pull request #2668 from TheBlueMatt/2023-10-fix-doc
2023-10-30 Matt CoralloMerge pull request #2669 from benthecarman/trace-sync...
2023-10-29 Matt CoralloMerge pull request #2613 from wvanlint/batch_funding_fix_up
2023-10-23 Matt CoralloMerge pull request #2676 from TheBlueMatt/2023-10-vario...
2023-10-21 Matt CoralloUse `Default::default()` for scoring params in tests
2023-10-20 Matt CoralloMerge pull request #2667 from wpaulino/random-htlc...
2023-10-20 Matt CoralloMerge pull request #2660 from benthecarman/flexible...
2023-10-20 Matt CoralloMerge pull request #2039 from jkczyz/2023-02-offer...
next