Skip to content

Commit c4e5233

Browse files
committed
Fix lint
1 parent cb6564d commit c4e5233

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

x/vm/keeper/state_transition.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ func (k *Keeper) ApplyTransaction(ctx sdk.Context, tx *ethtypes.Transaction) (*t
202202
}
203203

204204
ethLogs := types.LogsToEthereum(res.Logs)
205-
bloom, bloomReceipt := k.initializeBloomFromLogs(ctx, ethLogs)
205+
_, bloomReceipt := k.initializeBloomFromLogs(ctx, ethLogs)
206206

207207
if !res.Failed() {
208208
var contractAddr common.Address
@@ -256,7 +256,7 @@ func (k *Keeper) ApplyTransaction(ctx sdk.Context, tx *ethtypes.Transaction) (*t
256256

257257
// update logs and bloom for full view if post processing updated them
258258
ethLogs = types.LogsToEthereum(res.Logs)
259-
bloom, _ = k.initializeBloomFromLogs(ctx, ethLogs)
259+
bloom, _ := k.initializeBloomFromLogs(ctx, ethLogs)
260260

261261
// refund gas to match the Ethereum gas consumption instead of the default SDK one.
262262
remainingGas := uint64(0)

0 commit comments

Comments
 (0)