Skip to content

Commit

Permalink
wrap errors
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenButtolph committed Feb 26, 2025
1 parent c95e6af commit d8e1a5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/evm/header/dynamic_fee_state.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func feeStateBeforeBlock(
var err error
state, err = parseFeeState(parent.Extra)
if err != nil {
return acp176.State{}, err
return acp176.State{}, fmt.Errorf("failed to parse parent fee state: %w", err)
}
}

Expand Down

0 comments on commit d8e1a5e

Please sign in to comment.