Skip to content

Commit

Permalink
add debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
skosito committed May 21, 2024
1 parent 9b5396d commit 8bae394
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions x/evm/keeper/state_transition.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
package keeper

import (
"fmt"
"math/big"

tmtypes "github.com/cometbft/cometbft/types"
Expand Down Expand Up @@ -157,6 +158,8 @@ func (k *Keeper) ApplyTransaction(ctx sdk.Context, msgEth *types.MsgEthereumTx)
return nil, errorsmod.Wrap(err, "failed to load evm config")
}
ethTx := msgEth.AsTransaction()
fmt.Println("regular ethermint tx", ethTx.Hash())

txConfig := k.TxConfig(ctx, ethTx.Hash())

// get the signer according to the chain rules from the config and block height
Expand Down

0 comments on commit 8bae394

Please sign in to comment.