Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
- feat(basefee)!: premium-based base fee adjustment (FIP-0115), which may be included in a future upgrade ([filecoin-project/lotus#13531](https://github.com/filecoin-project/lotus/pull/13531))
- fix(eth): handle nil address in trace_filter for failed contract creates ([filecoin-project/lotus#13549](https://github.com/filecoin-project/lotus/pull/13549))
- fix(gas): stricter bounds for GasEstimateGasPremium lookback ([filecoin-project/lotus#13555](https://github.com/filecoin-project/lotus/pull/13555))
- fix(api): `StateSearchMsg` should respect `lookbackLimit` [filecoin-project/lotus#13562](https://github.com/filecoin-project/lotus/pull/13562)

# Node and Miner v1.35.0 / 2026-02-19

Expand Down
3 changes: 3 additions & 0 deletions chain/stmgr/searchwait.go
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,9 @@ func (sm *StateManager) SearchForMessage(ctx context.Context, head *types.TipSet
switch {
case err == nil:
if r != nil && foundMsg.Defined() {
if lookbackLimit != LookbackNoLimit && fts.Height()+lookbackLimit < head.Height() {
return nil, nil, cid.Undef, nil
}
return fts, r, foundMsg, nil
}

Expand Down
Loading