0.25.11-alpha
Please report bugs using the issue tracker at GitHub:
https://github.com/flokiorg/go-flokicoin/issues
This release focuses on fee estimation durability, RPC polish, and better accounting for mempool churn.
Upgrade notes
- Fee estimator snapshots now live on disk as
fee_estimates.datunder the data dir (atomic write/read). Ensure the daemon can write there on shutdown; stale files older than ~60h are ignored on startup.
Highlights
Fee estimation
- History Tracking: Tracks up to 1008 blocks of history and caps long-horizon queries instead of rejecting them, aligning with Bitcoin Core behavior.
- Mempool Churn: Records mempool removal reasons so unconfirmed drops (conflicts, reorgs, evictions, rejects) clear estimator state and reduce stale observations.
- Smart Fee Modes:
estimatesmartfeenow acceptseconomicalorconservativemodes (defaults conservative) and reports invalid modes cleanly; the result includes an expliciterrorsfield.
Persistence
- Atomic Saves: Fee estimator state is saved atomically to disk on shutdown and restored on startup when fresh; stale data surfaces an error and is skipped.
Notable commits
- mempool: track removal reasons in fee estimation; widen history to 1008 blocks and cap queries.
- mempool: persist fee estimator to disk with atomic writes and staleness checks.
- versioning: bump to 0.25.11-beta (binary reports alpha prerelease string).
Assets
Additional builds (ppc64, mips, *BSD, illumos/solaris) are available on the GitHub release page.