Appearance
Conditional Recall
Conditional Recall is an experimental frontend flow for short-lived HTLC traffic analysis.
It combines a forwarding-history baseline with a bounded live HTLC window, then reduces that activity into per-channel pressure and draft fee suggestions for manual review.
What it does
During a session, the app:
- loads recent forwarding history from LND
- opens the HTLC event stream for a bounded live window
- aggregates that activity by channel
- derives friction metrics from attempts, settles, failures, and failed volume
- emits draft fee suggestions when the current thresholds are met
The final result keeps channel-level aggregates and suggestions only. It does not keep raw HTLC paths, hashes, or per-event routing detail in the final output.
What it needs
- an active browser node session
- an LND REST host
- a
routerrpcmacaroon in hex - a lookback window in days
- a live collection window in seconds
- optional
Allow self signed TLS
Both inputs matter:
- the browser node session provides channel hints and current fee hints from the node you already connected
- the REST host and macaroon provide forwarding-history access plus the live HTLC event stream
How to use it
- connect your node in the browser
- open
Conditional Recall - enter the REST host and macaroon hex
- set
Lookback daysandLive window seconds - enable
Allow self signed TLSif your local endpoint needs it - click
Test Config - click
Start Session - review
Session StatusandDraft Fee Suggestions
Session lifecycle
A successful run moves through these stages:
startingcollecting_historystreaming_liveanalyzingcompleted
The session can also end as:
failedcanceled
What the page shows
Session Inputs
The page derives private channel references from the current browser node session and shows how many channel hints and fee hints are available for the run.
Session Status
During the run, the page shows:
- session id
- history events processed
- live events processed
- tracked channels
- start time
- end time or pending state
Draft Fee Suggestions
After the run completes, the page shows:
- a suggestion table with action, current fee, suggested fee, friction, confidence, and reasons
- an aggregate channel table with attempts, settles, failures, success rate, volume pressure, and friction
How suggestions are generated today
The current output is deterministic.
The app derives channel friction from:
- success rate
- failure rate
- failure pressure
- volume pressure
In practical terms:
- repeated forward or link failures push friction up and can trigger a fee increase suggestion
- low activity with low friction and a relatively high current fee can trigger a fee decrease suggestion
- channels with very little observed activity are ignored
This means the current page is a review tool, not an automatic policy engine.
What the result contains
Each suggestion includes:
raiseorlower- current fee ppm
- suggested fee ppm
- friction score
- confidence
- reason strings
- the observed window start and end
Each aggregate channel row includes:
- attempts
- settles
- forward fails
- link fails
- observed volume
- failed volume
- success and failure rates
- failure pressure
- volume pressure
- friction score
Current scope
- aggregate-only output
- bounded session lifecycle
- manual review workflow
- no automatic fee updates
- no verified-runtime path
Use this page when the normal channel view does not explain why a channel feels noisy, unreliable, or overpriced. It is useful for finding channels that are absorbing repeated failed forwarding load, channels with weak success rates relative to observed activity, and channels that deserve a manual fee review next.