Skip to content

Commit

Permalink
Remove debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
evgeniy-scherbina committed Mar 14, 2024
1 parent afdacb8 commit 71e4776
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions x/evm/keeper/keeper.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
package keeper

import (
"fmt"
"math/big"

errorsmod "cosmossdk.io/errors"
Expand Down Expand Up @@ -101,6 +102,11 @@ func NewKeeper(
tracer string,
ss paramstypes.Subspace,
) *Keeper {
fmt.Printf("###########################\n")
fmt.Printf("NewKeeper is called\n")
fmt.Printf("evmutilKeeper == nil: %v\n", evmutilKeeper == nil)
fmt.Printf("###########################\n")

// ensure evm module account is set
if addr := ak.GetModuleAddress(types.ModuleName); addr == nil {
panic("the EVM module account has not been set")
Expand Down

0 comments on commit 71e4776

Please sign in to comment.