Mining Troubleshooting
Use this page when the Mining page is running but the current cycle, commit, claim, or recovery state does not match what you expected. Mining is an operating loop:Target max is high, but submitted commit is low
This is usually normal.Target max is the saved upper limit for later. It is not a promise that every
cycle can use that amount. The actual submitted commit is capped by:
- free miner capital;
- locked capital from pending cycles;
- wallet SOL fee reserve;
- signer fee/rent buffer;
- minimum-entry and erosion coverage;
- recovery and claim state.
| Message | Meaning |
|---|---|
Commit reduced: locked capital clearing | earlier cycles still hold capital until settlement/claim frees it |
Commit reduced: fee reserve | the mining wallet needs more SOL outside miner capital for fees/rent |
Commit reduced: free capital | the miner capital PDA has less free SOL than the saved target right now |
Commit restored: capital unlocked | older capital cleared and the runtime could raise commit again |
Locked capital clearing
Submitted cycle capital is not immediately free. It clears after the cycle is settled, distributed, claimed, and closed where applicable. Expected signs:Lockedis non-zero;Withdrawis lower than total capital;- the runtime may submit a smaller cycle;
- the claim/recovery worker keeps running;
- later cycles can restore toward the saved target once capital unlocks.
Stop to accelerate clearing. Stop blocks new submits.
It does not make Solana settlement or claim state finish instantly.
Wallet SOL reserve reduced commit
Miner capital is not the same as wallet SOL. The mining wallet still needs SOL outside miner capital for:- transaction fees;
- priority fees when configured;
- miner-cycle account rent;
- associated token account rent when needed;
- retries after blockhash expiry, RPC timeout, or account lock conflict.
Missed or skipped cycles
A skipped cycle means the runtime did not submit into that cycle from this wallet. Causes include:- free capital below minimum entry;
- locked capital not yet clear;
- wallet SOL below fee reserve;
- RPC rate limit or stale state;
- signer unavailable;
- gateway/runtime restart during a submit window;
- previous cycle still in a claim/recovery path.
Stop, clearing, and resume
Stop means no new cycle submits.
If capital is locked, the runtime enters clearing:
- no new submits;
- claim and recovery can keep running;
- capital returns as cycles settle and claim;
- use
ResumeorStartafter clearing when you want new submits again.
Claimable SAT is zero
Claim depends on settlement and distribution, not only on submit. Possible reasons:- current cycle has not settled yet;
- distribution pages are still pending;
- claim already ran;
- claim backlog is waiting on an older ready cycle;
- RPC returned stale account state;
- the wallet is out of fee SOL for claim.
RPC stale, rate limited, or slow
Mining reads account state frequently. Public RPC can work for light tests, but long-running mining should use a reliable private or commercial RPC. Symptoms:- rate limited errors;
- stale current cycle;
- failed simulation after a transaction already landed;
- delayed claim status;
- missed submit window;
- endpoint failover messages.
Strategy outcome was not better
Strategy modes are wiring and decision policy. Outcomes vary by cycle, crowding, fees, missed windows, and other miners. A single miner can prove that strategy selection submits valid cycles, but it does not prove one strategy outperforms another. Strategy performance needs multi-miner evidence with equal commits, rotated wallets, and recorded deterministic rebate, performance rebate, score versus benchmark, SAT earned, and net SOL cost.Quick recovery checklist
- Confirm signer health.
- Confirm mining wallet SOL is above reserve.
- Confirm free miner capital is above minimum entry.
- Check pending and locked cycles.
- Check claim backlog.
- Check RPC rate limit/failover messages.
- Restart the gateway only after reading current status.
- Let recovery/claim finish before changing wallets or deleting local state.
Read next
Mining
Return to the main Mining page guide.
Advanced mining
Understand capital safety, strategy, claim, sweep, and recovery.
Mining automation
Review chat, task, and strategy automation boundaries.
RPC setup
Configure reliable Solana RPC for long-running mining.