Skip to content

Commit

Permalink
chore: fix lint error
Browse files Browse the repository at this point in the history
- Updated the logging statement in `testOutOfGasError` to correctly reference `build.BlockGasLimit` instead of `buildconstants.BlockGasLimit`.
  • Loading branch information
rjan90 committed Aug 15, 2024
1 parent 69225e3 commit 2a80828
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion itests/api_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ func (ts *apiSuite) testOutOfGasError(t *testing.T) {
build.BlockGasLimit = originalLimit
}()

t.Logf("BlockGasLimit changed: %d", buildconstants.BlockGasLimit)
t.Logf("BlockGasLimit changed: %d", build.BlockGasLimit)

msg := &types.Message{
From: senderAddr,
Expand Down

0 comments on commit 2a80828

Please sign in to comment.