Skip to content

Commit

Permalink
Problem: blacklist logging visibilty to low
Browse files Browse the repository at this point in the history
Solution: raised logging severity to 'error'
Signed-off-by: Bladerox <perseverance-pool@gmx.de>
  • Loading branch information
Bladerox authored and Perseverance42 committed Mar 4, 2024
1 parent c007e11 commit 982f32b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -813,12 +813,12 @@ func (app *App) setAnteHandler(txConfig client.TxConfig, maxGasWanted uint64, bl
panic(err)
}
}
app.Logger().Info("Setting ante handler with blacklist", "size", len(blacklist), "hash", hex.EncodeToString(h.Sum(nil)))
app.Logger().Error("Setting ante handler with blacklist", "size", len(blacklist), "hash", hex.EncodeToString(h.Sum(nil)))
for _, addr := range blacklist {
app.Logger().Info("Blacklisted address", "address", addr)
app.Logger().Error("Blacklisted address", "address", addr)
}
} else {
app.Logger().Info("Setting ante handler without blacklist")
app.Logger().Error("Setting ante handler without blacklist")
}
anteHandler, err := evmante.NewAnteHandler(evmante.HandlerOptions{
AccountKeeper: app.AccountKeeper,
Expand Down

0 comments on commit 982f32b

Please sign in to comment.