Skip to content

Commit

Permalink
wip: update signing
Browse files Browse the repository at this point in the history
  • Loading branch information
boodyvo committed Nov 4, 2024
1 parent 84fa563 commit 0a8c606
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
4 changes: 0 additions & 4 deletions x/evm/types/codec.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ package types

import (
errorsmod "cosmossdk.io/errors"
"fmt"
"github.com/cosmos/cosmos-sdk/codec"
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
sdk "github.com/cosmos/cosmos-sdk/types"
Expand Down Expand Up @@ -94,9 +93,6 @@ func UnpackTxData(any *codectypes.Any) (TxData, error) {
return nil, errorsmod.Wrap(errortypes.ErrUnpackAny, "protobuf Any message cannot be nil")
}

fmt.Println("UnpackTxData cached", any.GetCachedValue())
fmt.Println("UnpackTxData not cached", any.GetValue())

txData, ok := any.GetCachedValue().(TxData)
if !ok {
return nil, errorsmod.Wrapf(errortypes.ErrUnpackAny, "cannot unpack Any into TxData %T", any)
Expand Down
1 change: 0 additions & 1 deletion x/evm/types/msg.go
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,6 @@ func GetSigners(msg protov2.Message) ([][]byte, error) {
if err != nil {
return nil, err
}
fmt.Println("Eth message tryingTypeAnyV1 MsgEthereumTx data", msgTyped.Data)

var data TxData
switch {
Expand Down

0 comments on commit 0a8c606

Please sign in to comment.