This error was removed in v127
This error is no longer present in the current runtime. Existed from v123 to v127. Shown here for historical reference.
WrongIndex
Error Removed v123 → v127 (removed) 10.3The proposal index you provided does not match the current proposal count. This happens when the index has changed since you queried it (another proposal was created in between).
Encountered by: validators
Why This Error Exists
The proposal index ensures ordering consistency. It changes as new proposals are created, so always use a fresh value.
From Chain Metadata
Mismatched index
What This Means
The proposal index you provided does not match the current proposal count. This happens when the index has changed since you queried it (another proposal was created in between).
Common Causes
- Proposal index is stale — new proposals were added since you last checked
- Off-by-one error in index calculation
- Using an index from a previous session or query
How to Fix
- Query Senate.ProposalCount for the current index
- Resubmit with the fresh index value
- Submit promptly after querying to minimize staleness
Storage to Check
Runtime Info
- Pallet Index
- 10
- Error Index
- 3
- Error Code
- 10.3
- Removed In
- v127