fix: use actual result when unmarshaling value (#1555)
This commit is contained in:
parent
dda1267f6d
commit
bc8e3e6eb0
@ -2,11 +2,12 @@ package evm_test
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"github.com/evmos/ethermint/x/evm/keeper"
|
||||
"math/big"
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/evmos/ethermint/x/evm/keeper"
|
||||
|
||||
sdkmath "cosmossdk.io/math"
|
||||
"github.com/gogo/protobuf/proto"
|
||||
|
||||
@ -16,6 +17,7 @@ import (
|
||||
"github.com/cosmos/cosmos-sdk/simapp"
|
||||
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
|
||||
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
|
||||
|
||||
feemarkettypes "github.com/evmos/ethermint/x/feemarket/types"
|
||||
|
||||
stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"
|
||||
@ -375,7 +377,7 @@ func (suite *EvmTestSuite) TestDeployAndCallContract() {
|
||||
tx = types.NewTx(suite.chainID, 2, &receiver, big.NewInt(0), gasLimit, gasPrice, nil, nil, bytecode, nil)
|
||||
suite.SignTx(tx)
|
||||
|
||||
_, err = suite.handler(suite.ctx, tx)
|
||||
result, err = suite.handler(suite.ctx, tx)
|
||||
suite.Require().NoError(err, "failed to handle eth tx msg")
|
||||
|
||||
err = proto.Unmarshal(result.Data, &res)
|
||||
@ -387,7 +389,7 @@ func (suite *EvmTestSuite) TestDeployAndCallContract() {
|
||||
tx = types.NewTx(suite.chainID, 2, &receiver, big.NewInt(0), gasLimit, gasPrice, nil, nil, bytecode, nil)
|
||||
suite.SignTx(tx)
|
||||
|
||||
_, err = suite.handler(suite.ctx, tx)
|
||||
result, err = suite.handler(suite.ctx, tx)
|
||||
suite.Require().NoError(err, "failed to handle eth tx msg")
|
||||
|
||||
err = proto.Unmarshal(result.Data, &res)
|
||||
|
Loading…
Reference in New Issue
Block a user