2020-04-01 18:49:21 +00:00
|
|
|
package ante_test
|
|
|
|
|
|
|
|
import (
|
2022-02-26 16:34:43 +00:00
|
|
|
"github.com/cosmos/cosmos-sdk/types/tx/signing"
|
2020-04-01 18:49:21 +00:00
|
|
|
"math/big"
|
2021-06-21 07:59:45 +00:00
|
|
|
"strings"
|
2020-04-01 18:49:21 +00:00
|
|
|
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
|
2021-10-19 08:49:29 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
|
|
|
ethparams "github.com/ethereum/go-ethereum/params"
|
2021-09-07 17:29:24 +00:00
|
|
|
"github.com/tharsis/ethermint/tests"
|
2021-06-22 10:49:18 +00:00
|
|
|
evmtypes "github.com/tharsis/ethermint/x/evm/types"
|
2020-04-01 18:49:21 +00:00
|
|
|
)
|
|
|
|
|
2021-05-31 09:05:32 +00:00
|
|
|
func (suite AnteTestSuite) TestAnteHandler() {
|
2021-12-28 07:59:28 +00:00
|
|
|
suite.enableFeemarket = false
|
2021-10-19 08:49:29 +00:00
|
|
|
suite.SetupTest() // reset
|
|
|
|
|
2021-09-07 17:29:24 +00:00
|
|
|
addr, privKey := tests.NewAddrKey()
|
|
|
|
to := tests.GenerateAddress()
|
2020-04-01 18:49:21 +00:00
|
|
|
|
2021-05-31 09:05:32 +00:00
|
|
|
acc := suite.app.AccountKeeper.NewAccountWithAddress(suite.ctx, addr.Bytes())
|
|
|
|
suite.Require().NoError(acc.SetSequence(1))
|
2020-04-01 18:49:21 +00:00
|
|
|
suite.app.AccountKeeper.SetAccount(suite.ctx, acc)
|
|
|
|
|
2022-01-05 07:28:27 +00:00
|
|
|
suite.app.EvmKeeper.SetBalance(suite.ctx, addr, big.NewInt(10000000000))
|
2020-04-01 18:49:21 +00:00
|
|
|
|
2021-11-19 16:22:25 +00:00
|
|
|
suite.app.FeeMarketKeeper.SetBaseFee(suite.ctx, big.NewInt(100))
|
|
|
|
|
2021-05-31 09:05:32 +00:00
|
|
|
testCases := []struct {
|
|
|
|
name string
|
2021-06-01 17:14:33 +00:00
|
|
|
txFn func() sdk.Tx
|
2021-05-31 09:05:32 +00:00
|
|
|
checkTx bool
|
|
|
|
reCheckTx bool
|
|
|
|
expPass bool
|
|
|
|
}{
|
2021-06-01 17:14:33 +00:00
|
|
|
{
|
|
|
|
"success - DeliverTx (contract)",
|
|
|
|
func() sdk.Tx {
|
2021-11-19 16:22:25 +00:00
|
|
|
signedContractTx := evmtypes.NewTxContract(
|
|
|
|
suite.app.EvmKeeper.ChainID(),
|
|
|
|
1,
|
|
|
|
big.NewInt(10),
|
|
|
|
100000,
|
|
|
|
big.NewInt(150),
|
|
|
|
big.NewInt(200),
|
|
|
|
nil,
|
|
|
|
nil,
|
|
|
|
nil,
|
|
|
|
)
|
2021-06-01 17:14:33 +00:00
|
|
|
signedContractTx.From = addr.Hex()
|
|
|
|
|
2021-11-08 13:00:35 +00:00
|
|
|
tx := suite.CreateTestTx(signedContractTx, privKey, 1, false)
|
2021-06-01 17:14:33 +00:00
|
|
|
return tx
|
|
|
|
},
|
|
|
|
false, false, true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"success - CheckTx (contract)",
|
|
|
|
func() sdk.Tx {
|
2021-11-19 16:22:25 +00:00
|
|
|
signedContractTx := evmtypes.NewTxContract(
|
|
|
|
suite.app.EvmKeeper.ChainID(),
|
2021-12-16 22:35:28 +00:00
|
|
|
2,
|
2021-11-19 16:22:25 +00:00
|
|
|
big.NewInt(10),
|
|
|
|
100000,
|
|
|
|
big.NewInt(150),
|
|
|
|
big.NewInt(200),
|
|
|
|
nil,
|
|
|
|
nil,
|
|
|
|
nil,
|
|
|
|
)
|
2021-06-01 17:14:33 +00:00
|
|
|
signedContractTx.From = addr.Hex()
|
|
|
|
|
2021-11-08 13:00:35 +00:00
|
|
|
tx := suite.CreateTestTx(signedContractTx, privKey, 1, false)
|
2021-06-01 17:14:33 +00:00
|
|
|
return tx
|
|
|
|
},
|
|
|
|
true, false, true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"success - ReCheckTx (contract)",
|
|
|
|
func() sdk.Tx {
|
2021-11-19 16:22:25 +00:00
|
|
|
signedContractTx := evmtypes.NewTxContract(
|
|
|
|
suite.app.EvmKeeper.ChainID(),
|
2021-12-16 22:35:28 +00:00
|
|
|
3,
|
2021-11-19 16:22:25 +00:00
|
|
|
big.NewInt(10),
|
|
|
|
100000,
|
|
|
|
big.NewInt(150),
|
|
|
|
big.NewInt(200),
|
|
|
|
nil,
|
|
|
|
nil,
|
|
|
|
nil,
|
|
|
|
)
|
2021-06-01 17:14:33 +00:00
|
|
|
signedContractTx.From = addr.Hex()
|
|
|
|
|
2021-11-08 13:00:35 +00:00
|
|
|
tx := suite.CreateTestTx(signedContractTx, privKey, 1, false)
|
2021-06-01 17:14:33 +00:00
|
|
|
return tx
|
|
|
|
},
|
|
|
|
false, true, true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"success - DeliverTx",
|
|
|
|
func() sdk.Tx {
|
2021-11-19 16:22:25 +00:00
|
|
|
signedTx := evmtypes.NewTx(
|
|
|
|
suite.app.EvmKeeper.ChainID(),
|
2021-12-16 22:35:28 +00:00
|
|
|
4,
|
2021-11-19 16:22:25 +00:00
|
|
|
&to,
|
|
|
|
big.NewInt(10),
|
|
|
|
100000,
|
|
|
|
big.NewInt(150),
|
|
|
|
big.NewInt(200),
|
|
|
|
nil,
|
|
|
|
nil,
|
|
|
|
nil,
|
|
|
|
)
|
2021-06-01 17:14:33 +00:00
|
|
|
signedTx.From = addr.Hex()
|
|
|
|
|
2021-11-08 13:00:35 +00:00
|
|
|
tx := suite.CreateTestTx(signedTx, privKey, 1, false)
|
2021-06-01 17:14:33 +00:00
|
|
|
return tx
|
|
|
|
},
|
|
|
|
false, false, true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"success - CheckTx",
|
|
|
|
func() sdk.Tx {
|
2021-11-19 16:22:25 +00:00
|
|
|
signedTx := evmtypes.NewTx(
|
|
|
|
suite.app.EvmKeeper.ChainID(),
|
2021-12-16 22:35:28 +00:00
|
|
|
5,
|
2021-11-19 16:22:25 +00:00
|
|
|
&to,
|
|
|
|
big.NewInt(10),
|
|
|
|
100000,
|
|
|
|
big.NewInt(150),
|
|
|
|
big.NewInt(200),
|
|
|
|
nil,
|
|
|
|
nil,
|
|
|
|
nil,
|
|
|
|
)
|
2021-06-01 17:14:33 +00:00
|
|
|
signedTx.From = addr.Hex()
|
|
|
|
|
2021-11-08 13:00:35 +00:00
|
|
|
tx := suite.CreateTestTx(signedTx, privKey, 1, false)
|
2021-06-01 17:14:33 +00:00
|
|
|
return tx
|
|
|
|
},
|
|
|
|
true, false, true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"success - ReCheckTx",
|
|
|
|
func() sdk.Tx {
|
2021-11-19 16:22:25 +00:00
|
|
|
signedTx := evmtypes.NewTx(
|
|
|
|
suite.app.EvmKeeper.ChainID(),
|
2022-01-14 09:37:33 +00:00
|
|
|
6,
|
2021-11-19 16:22:25 +00:00
|
|
|
&to,
|
|
|
|
big.NewInt(10),
|
|
|
|
100000,
|
|
|
|
big.NewInt(150),
|
|
|
|
big.NewInt(200),
|
|
|
|
nil,
|
|
|
|
nil,
|
|
|
|
nil,
|
|
|
|
)
|
2021-06-01 17:14:33 +00:00
|
|
|
signedTx.From = addr.Hex()
|
|
|
|
|
2021-11-08 13:00:35 +00:00
|
|
|
tx := suite.CreateTestTx(signedTx, privKey, 1, false)
|
2021-06-01 17:14:33 +00:00
|
|
|
return tx
|
|
|
|
}, false, true, true,
|
|
|
|
},
|
2021-06-21 10:44:37 +00:00
|
|
|
{
|
|
|
|
"success - CheckTx (cosmos tx not signed)",
|
|
|
|
func() sdk.Tx {
|
2021-11-19 16:22:25 +00:00
|
|
|
signedTx := evmtypes.NewTx(
|
|
|
|
suite.app.EvmKeeper.ChainID(),
|
2022-01-14 09:37:33 +00:00
|
|
|
7,
|
2021-11-19 16:22:25 +00:00
|
|
|
&to,
|
|
|
|
big.NewInt(10),
|
|
|
|
100000,
|
|
|
|
big.NewInt(150),
|
|
|
|
big.NewInt(200),
|
|
|
|
nil,
|
|
|
|
nil,
|
|
|
|
nil,
|
|
|
|
)
|
2021-06-21 10:44:37 +00:00
|
|
|
signedTx.From = addr.Hex()
|
|
|
|
|
|
|
|
tx := suite.CreateTestTx(signedTx, privKey, 1, false)
|
|
|
|
return tx
|
|
|
|
}, false, true, true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"fail - CheckTx (cosmos tx is not valid)",
|
|
|
|
func() sdk.Tx {
|
2022-01-14 09:37:33 +00:00
|
|
|
signedTx := evmtypes.NewTx(suite.app.EvmKeeper.ChainID(), 8, &to, big.NewInt(10), 100000, big.NewInt(1), nil, nil, nil, nil)
|
2021-06-21 10:44:37 +00:00
|
|
|
signedTx.From = addr.Hex()
|
|
|
|
|
|
|
|
txBuilder := suite.CreateTestTxBuilder(signedTx, privKey, 1, false)
|
|
|
|
// bigger than MaxGasWanted
|
|
|
|
txBuilder.SetGasLimit(uint64(1 << 63))
|
|
|
|
return txBuilder.GetTx()
|
2021-12-15 02:17:03 +00:00
|
|
|
}, true, false, false,
|
2021-06-21 10:44:37 +00:00
|
|
|
},
|
2021-06-21 07:59:45 +00:00
|
|
|
{
|
|
|
|
"fail - CheckTx (memo too long)",
|
|
|
|
func() sdk.Tx {
|
2021-10-05 15:38:20 +00:00
|
|
|
signedTx := evmtypes.NewTx(suite.app.EvmKeeper.ChainID(), 5, &to, big.NewInt(10), 100000, big.NewInt(1), nil, nil, nil, nil)
|
2021-06-21 07:59:45 +00:00
|
|
|
signedTx.From = addr.Hex()
|
|
|
|
|
2021-11-08 13:00:35 +00:00
|
|
|
txBuilder := suite.CreateTestTxBuilder(signedTx, privKey, 1, false)
|
2021-06-21 07:59:45 +00:00
|
|
|
txBuilder.SetMemo(strings.Repeat("*", 257))
|
|
|
|
return txBuilder.GetTx()
|
|
|
|
}, true, false, false,
|
|
|
|
},
|
2021-12-23 16:07:23 +00:00
|
|
|
{
|
|
|
|
"fail - CheckTx (ExtensionOptionsEthereumTx not set)",
|
|
|
|
func() sdk.Tx {
|
|
|
|
signedTx := evmtypes.NewTx(suite.app.EvmKeeper.ChainID(), 5, &to, big.NewInt(10), 100000, big.NewInt(1), nil, nil, nil, nil)
|
|
|
|
signedTx.From = addr.Hex()
|
|
|
|
|
|
|
|
txBuilder := suite.CreateTestTxBuilder(signedTx, privKey, 1, false, true)
|
|
|
|
return txBuilder.GetTx()
|
|
|
|
}, true, false, false,
|
|
|
|
},
|
2021-11-08 13:00:35 +00:00
|
|
|
// Based on EVMBackend.SendTransaction, for cosmos tx, forcing null for some fields except ExtensionOptions, Fee, MsgEthereumTx
|
|
|
|
// should be part of consensus
|
|
|
|
{
|
|
|
|
"fail - DeliverTx (cosmos tx signed)",
|
|
|
|
func() sdk.Tx {
|
|
|
|
nonce, err := suite.app.AccountKeeper.GetSequence(suite.ctx, acc.GetAddress())
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
signedTx := evmtypes.NewTx(suite.app.EvmKeeper.ChainID(), nonce, &to, big.NewInt(10), 100000, big.NewInt(1), nil, nil, nil, nil)
|
|
|
|
signedTx.From = addr.Hex()
|
|
|
|
|
|
|
|
tx := suite.CreateTestTx(signedTx, privKey, 1, true)
|
|
|
|
return tx
|
|
|
|
}, false, false, false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"fail - DeliverTx (cosmos tx with memo)",
|
|
|
|
func() sdk.Tx {
|
|
|
|
nonce, err := suite.app.AccountKeeper.GetSequence(suite.ctx, acc.GetAddress())
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
signedTx := evmtypes.NewTx(suite.app.EvmKeeper.ChainID(), nonce, &to, big.NewInt(10), 100000, big.NewInt(1), nil, nil, nil, nil)
|
|
|
|
signedTx.From = addr.Hex()
|
|
|
|
|
|
|
|
txBuilder := suite.CreateTestTxBuilder(signedTx, privKey, 1, false)
|
|
|
|
txBuilder.SetMemo("memo for cosmos tx not allowed")
|
|
|
|
return txBuilder.GetTx()
|
|
|
|
}, false, false, false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"fail - DeliverTx (cosmos tx with timeoutheight)",
|
|
|
|
func() sdk.Tx {
|
|
|
|
nonce, err := suite.app.AccountKeeper.GetSequence(suite.ctx, acc.GetAddress())
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
signedTx := evmtypes.NewTx(suite.app.EvmKeeper.ChainID(), nonce, &to, big.NewInt(10), 100000, big.NewInt(1), nil, nil, nil, nil)
|
|
|
|
signedTx.From = addr.Hex()
|
|
|
|
|
|
|
|
txBuilder := suite.CreateTestTxBuilder(signedTx, privKey, 1, false)
|
|
|
|
txBuilder.SetTimeoutHeight(10)
|
|
|
|
return txBuilder.GetTx()
|
|
|
|
}, false, false, false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"fail - DeliverTx (invalid fee amount)",
|
|
|
|
func() sdk.Tx {
|
|
|
|
nonce, err := suite.app.AccountKeeper.GetSequence(suite.ctx, acc.GetAddress())
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
signedTx := evmtypes.NewTx(suite.app.EvmKeeper.ChainID(), nonce, &to, big.NewInt(10), 100000, big.NewInt(1), nil, nil, nil, nil)
|
|
|
|
signedTx.From = addr.Hex()
|
|
|
|
|
|
|
|
txBuilder := suite.CreateTestTxBuilder(signedTx, privKey, 1, false)
|
|
|
|
|
|
|
|
txData, err := evmtypes.UnpackTxData(signedTx.Data)
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
|
|
|
|
expFee := txData.Fee()
|
|
|
|
invalidFee := new(big.Int).Add(expFee, big.NewInt(1))
|
|
|
|
invalidFeeAmount := sdk.Coins{sdk.NewCoin(evmtypes.DefaultEVMDenom, sdk.NewIntFromBigInt(invalidFee))}
|
|
|
|
txBuilder.SetFeeAmount(invalidFeeAmount)
|
|
|
|
return txBuilder.GetTx()
|
|
|
|
}, false, false, false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"fail - DeliverTx (invalid fee gaslimit)",
|
|
|
|
func() sdk.Tx {
|
|
|
|
nonce, err := suite.app.AccountKeeper.GetSequence(suite.ctx, acc.GetAddress())
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
signedTx := evmtypes.NewTx(suite.app.EvmKeeper.ChainID(), nonce, &to, big.NewInt(10), 100000, big.NewInt(1), nil, nil, nil, nil)
|
|
|
|
signedTx.From = addr.Hex()
|
|
|
|
|
|
|
|
txBuilder := suite.CreateTestTxBuilder(signedTx, privKey, 1, false)
|
|
|
|
|
|
|
|
expGasLimit := signedTx.GetGas()
|
|
|
|
invalidGasLimit := expGasLimit + 1
|
|
|
|
txBuilder.SetGasLimit(invalidGasLimit)
|
|
|
|
return txBuilder.GetTx()
|
|
|
|
}, false, false, false,
|
|
|
|
},
|
2022-02-26 16:34:43 +00:00
|
|
|
{
|
|
|
|
"success - DeliverTx EIP712 signed Cosmos Tx with MsgSend",
|
|
|
|
func() sdk.Tx {
|
|
|
|
from := acc.GetAddress()
|
|
|
|
amount := sdk.NewCoins(sdk.NewCoin(evmtypes.DefaultEVMDenom, sdk.NewInt(20)))
|
|
|
|
gas := uint64(200000)
|
|
|
|
txBuilder := suite.CreateTestEIP712TxBuilderMsgSend(from, privKey, "ethermint_9000-1", gas, amount)
|
|
|
|
return txBuilder.GetTx()
|
|
|
|
}, false, false, true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"success - DeliverTx EIP712 signed Cosmos Tx with DelegateMsg",
|
|
|
|
func() sdk.Tx {
|
|
|
|
from := acc.GetAddress()
|
|
|
|
coinAmount := sdk.NewCoin(evmtypes.DefaultEVMDenom, sdk.NewInt(20))
|
|
|
|
amount := sdk.NewCoins(coinAmount)
|
|
|
|
gas := uint64(200000)
|
|
|
|
txBuilder := suite.CreateTestEIP712TxBuilderMsgDelegate(from, privKey, "ethermint_9000-1", gas, amount)
|
|
|
|
return txBuilder.GetTx()
|
|
|
|
}, false, false, true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"fails - DeliverTx EIP712 signed Cosmos Tx with wrong Chain ID",
|
|
|
|
func() sdk.Tx {
|
|
|
|
from := acc.GetAddress()
|
|
|
|
amount := sdk.NewCoins(sdk.NewCoin(evmtypes.DefaultEVMDenom, sdk.NewInt(20)))
|
|
|
|
gas := uint64(200000)
|
|
|
|
txBuilder := suite.CreateTestEIP712TxBuilderMsgSend(from, privKey, "ethermint_9002-1", gas, amount)
|
|
|
|
return txBuilder.GetTx()
|
|
|
|
}, false, false, false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"fails - DeliverTx EIP712 signed Cosmos Tx with different gas fees",
|
|
|
|
func() sdk.Tx {
|
|
|
|
from := acc.GetAddress()
|
|
|
|
amount := sdk.NewCoins(sdk.NewCoin(evmtypes.DefaultEVMDenom, sdk.NewInt(20)))
|
|
|
|
gas := uint64(200000)
|
|
|
|
txBuilder := suite.CreateTestEIP712TxBuilderMsgSend(from, privKey, "ethermint_9001-1", gas, amount)
|
|
|
|
txBuilder.SetGasLimit(uint64(300000))
|
|
|
|
txBuilder.SetFeeAmount(sdk.NewCoins(sdk.NewCoin(evmtypes.DefaultEVMDenom, sdk.NewInt(30))))
|
|
|
|
return txBuilder.GetTx()
|
|
|
|
}, false, false, false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"fails - DeliverTx EIP712 signed Cosmos Tx with empty signature",
|
|
|
|
func() sdk.Tx {
|
|
|
|
from := acc.GetAddress()
|
|
|
|
amount := sdk.NewCoins(sdk.NewCoin(evmtypes.DefaultEVMDenom, sdk.NewInt(20)))
|
|
|
|
gas := uint64(200000)
|
|
|
|
txBuilder := suite.CreateTestEIP712TxBuilderMsgSend(from, privKey, "ethermint_9001-1", gas, amount)
|
|
|
|
sigsV2 := signing.SignatureV2{}
|
|
|
|
txBuilder.SetSignatures(sigsV2)
|
|
|
|
return txBuilder.GetTx()
|
|
|
|
}, false, false, false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"fails - DeliverTx EIP712 signed Cosmos Tx with invalid sequence",
|
|
|
|
func() sdk.Tx {
|
|
|
|
from := acc.GetAddress()
|
|
|
|
amount := sdk.NewCoins(sdk.NewCoin(evmtypes.DefaultEVMDenom, sdk.NewInt(20)))
|
|
|
|
gas := uint64(200000)
|
|
|
|
txBuilder := suite.CreateTestEIP712TxBuilderMsgSend(from, privKey, "ethermint_9001-1", gas, amount)
|
|
|
|
nonce, err := suite.app.AccountKeeper.GetSequence(suite.ctx, acc.GetAddress())
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
sigsV2 := signing.SignatureV2{
|
|
|
|
PubKey: privKey.PubKey(),
|
|
|
|
Data: &signing.SingleSignatureData{
|
|
|
|
SignMode: signing.SignMode_SIGN_MODE_LEGACY_AMINO_JSON,
|
|
|
|
},
|
|
|
|
Sequence: nonce - 1,
|
|
|
|
}
|
|
|
|
txBuilder.SetSignatures(sigsV2)
|
|
|
|
return txBuilder.GetTx()
|
|
|
|
}, false, false, false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"fails - DeliverTx EIP712 signed Cosmos Tx with invalid signMode",
|
|
|
|
func() sdk.Tx {
|
|
|
|
from := acc.GetAddress()
|
|
|
|
amount := sdk.NewCoins(sdk.NewCoin(evmtypes.DefaultEVMDenom, sdk.NewInt(20)))
|
|
|
|
gas := uint64(200000)
|
|
|
|
txBuilder := suite.CreateTestEIP712TxBuilderMsgSend(from, privKey, "ethermint_9001-1", gas, amount)
|
|
|
|
nonce, err := suite.app.AccountKeeper.GetSequence(suite.ctx, acc.GetAddress())
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
sigsV2 := signing.SignatureV2{
|
|
|
|
PubKey: privKey.PubKey(),
|
|
|
|
Data: &signing.SingleSignatureData{
|
|
|
|
SignMode: signing.SignMode_SIGN_MODE_UNSPECIFIED,
|
|
|
|
},
|
|
|
|
Sequence: nonce,
|
|
|
|
}
|
|
|
|
txBuilder.SetSignatures(sigsV2)
|
|
|
|
return txBuilder.GetTx()
|
|
|
|
}, false, false, false,
|
|
|
|
},
|
2021-05-31 09:05:32 +00:00
|
|
|
}
|
2020-04-01 18:49:21 +00:00
|
|
|
|
2021-05-31 09:05:32 +00:00
|
|
|
for _, tc := range testCases {
|
|
|
|
suite.Run(tc.name, func() {
|
2021-12-15 02:17:03 +00:00
|
|
|
suite.ctx = suite.ctx.WithIsCheckTx(tc.checkTx).WithIsReCheckTx(tc.reCheckTx)
|
2020-04-01 18:49:21 +00:00
|
|
|
|
2021-06-01 17:14:33 +00:00
|
|
|
// expConsumed := params.TxGasContractCreation + params.TxGas
|
|
|
|
_, err := suite.anteHandler(suite.ctx, tc.txFn(), false)
|
2020-04-01 18:49:21 +00:00
|
|
|
|
2021-05-31 09:05:32 +00:00
|
|
|
// suite.Require().Equal(consumed, ctx.GasMeter().GasConsumed())
|
2020-04-01 18:49:21 +00:00
|
|
|
|
2021-05-31 09:05:32 +00:00
|
|
|
if tc.expPass {
|
|
|
|
suite.Require().NoError(err)
|
2021-06-01 17:14:33 +00:00
|
|
|
// suite.Require().Equal(int(expConsumed), int(suite.ctx.GasMeter().GasConsumed()))
|
2021-05-31 09:05:32 +00:00
|
|
|
} else {
|
|
|
|
suite.Require().Error(err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2020-04-01 18:49:21 +00:00
|
|
|
}
|
2021-10-19 08:49:29 +00:00
|
|
|
|
|
|
|
func (suite AnteTestSuite) TestAnteHandlerWithDynamicTxFee() {
|
|
|
|
addr, privKey := tests.NewAddrKey()
|
|
|
|
to := tests.GenerateAddress()
|
|
|
|
|
|
|
|
testCases := []struct {
|
2021-12-28 07:59:28 +00:00
|
|
|
name string
|
|
|
|
txFn func() sdk.Tx
|
|
|
|
enableLondonHF bool
|
|
|
|
checkTx bool
|
|
|
|
reCheckTx bool
|
|
|
|
expPass bool
|
2021-10-19 08:49:29 +00:00
|
|
|
}{
|
|
|
|
{
|
|
|
|
"success - DeliverTx (contract)",
|
|
|
|
func() sdk.Tx {
|
|
|
|
signedContractTx :=
|
|
|
|
evmtypes.NewTxContract(
|
|
|
|
suite.app.EvmKeeper.ChainID(),
|
|
|
|
1,
|
|
|
|
big.NewInt(10),
|
|
|
|
100000,
|
|
|
|
nil,
|
|
|
|
big.NewInt(ethparams.InitialBaseFee+1),
|
|
|
|
big.NewInt(1),
|
|
|
|
nil,
|
|
|
|
&types.AccessList{},
|
|
|
|
)
|
|
|
|
signedContractTx.From = addr.Hex()
|
|
|
|
|
2021-11-08 13:00:35 +00:00
|
|
|
tx := suite.CreateTestTx(signedContractTx, privKey, 1, false)
|
2021-10-19 08:49:29 +00:00
|
|
|
return tx
|
|
|
|
},
|
2021-12-28 07:59:28 +00:00
|
|
|
true,
|
2021-10-19 08:49:29 +00:00
|
|
|
false, false, true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"success - CheckTx (contract)",
|
|
|
|
func() sdk.Tx {
|
|
|
|
signedContractTx :=
|
|
|
|
evmtypes.NewTxContract(
|
|
|
|
suite.app.EvmKeeper.ChainID(),
|
2021-12-28 07:59:28 +00:00
|
|
|
1,
|
2021-10-19 08:49:29 +00:00
|
|
|
big.NewInt(10),
|
|
|
|
100000,
|
|
|
|
nil,
|
|
|
|
big.NewInt(ethparams.InitialBaseFee+1),
|
|
|
|
big.NewInt(1),
|
|
|
|
nil,
|
|
|
|
&types.AccessList{},
|
|
|
|
)
|
|
|
|
signedContractTx.From = addr.Hex()
|
|
|
|
|
2021-11-08 13:00:35 +00:00
|
|
|
tx := suite.CreateTestTx(signedContractTx, privKey, 1, false)
|
2021-10-19 08:49:29 +00:00
|
|
|
return tx
|
|
|
|
},
|
2021-12-28 07:59:28 +00:00
|
|
|
true,
|
2021-10-19 08:49:29 +00:00
|
|
|
true, false, true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"success - ReCheckTx (contract)",
|
|
|
|
func() sdk.Tx {
|
|
|
|
signedContractTx :=
|
|
|
|
evmtypes.NewTxContract(
|
|
|
|
suite.app.EvmKeeper.ChainID(),
|
2021-12-28 07:59:28 +00:00
|
|
|
1,
|
2021-10-19 08:49:29 +00:00
|
|
|
big.NewInt(10),
|
|
|
|
100000,
|
|
|
|
nil,
|
|
|
|
big.NewInt(ethparams.InitialBaseFee+1),
|
|
|
|
big.NewInt(1),
|
|
|
|
nil,
|
|
|
|
&types.AccessList{},
|
|
|
|
)
|
|
|
|
signedContractTx.From = addr.Hex()
|
|
|
|
|
2021-11-08 13:00:35 +00:00
|
|
|
tx := suite.CreateTestTx(signedContractTx, privKey, 1, false)
|
2021-10-19 08:49:29 +00:00
|
|
|
return tx
|
|
|
|
},
|
2021-12-28 07:59:28 +00:00
|
|
|
true,
|
2021-10-19 08:49:29 +00:00
|
|
|
false, true, true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"success - DeliverTx",
|
|
|
|
func() sdk.Tx {
|
|
|
|
signedTx :=
|
|
|
|
evmtypes.NewTx(
|
|
|
|
suite.app.EvmKeeper.ChainID(),
|
2021-12-28 07:59:28 +00:00
|
|
|
1,
|
2021-10-19 08:49:29 +00:00
|
|
|
&to,
|
|
|
|
big.NewInt(10),
|
|
|
|
100000,
|
|
|
|
nil,
|
|
|
|
big.NewInt(ethparams.InitialBaseFee+1),
|
|
|
|
big.NewInt(1),
|
|
|
|
nil,
|
|
|
|
&types.AccessList{},
|
|
|
|
)
|
|
|
|
signedTx.From = addr.Hex()
|
|
|
|
|
2021-11-08 13:00:35 +00:00
|
|
|
tx := suite.CreateTestTx(signedTx, privKey, 1, false)
|
2021-10-19 08:49:29 +00:00
|
|
|
return tx
|
|
|
|
},
|
2021-12-28 07:59:28 +00:00
|
|
|
true,
|
2021-10-19 08:49:29 +00:00
|
|
|
false, false, true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"success - CheckTx",
|
|
|
|
func() sdk.Tx {
|
|
|
|
signedTx :=
|
|
|
|
evmtypes.NewTx(
|
|
|
|
suite.app.EvmKeeper.ChainID(),
|
2021-12-28 07:59:28 +00:00
|
|
|
1,
|
2021-10-19 08:49:29 +00:00
|
|
|
&to,
|
|
|
|
big.NewInt(10),
|
|
|
|
100000,
|
|
|
|
nil,
|
|
|
|
big.NewInt(ethparams.InitialBaseFee+1),
|
|
|
|
big.NewInt(1),
|
|
|
|
nil,
|
|
|
|
&types.AccessList{},
|
|
|
|
)
|
|
|
|
signedTx.From = addr.Hex()
|
|
|
|
|
2021-11-08 13:00:35 +00:00
|
|
|
tx := suite.CreateTestTx(signedTx, privKey, 1, false)
|
2021-10-19 08:49:29 +00:00
|
|
|
return tx
|
|
|
|
},
|
2021-12-28 07:59:28 +00:00
|
|
|
true,
|
2021-10-19 08:49:29 +00:00
|
|
|
true, false, true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"success - ReCheckTx",
|
|
|
|
func() sdk.Tx {
|
|
|
|
signedTx :=
|
|
|
|
evmtypes.NewTx(
|
|
|
|
suite.app.EvmKeeper.ChainID(),
|
2021-12-28 07:59:28 +00:00
|
|
|
1,
|
2021-10-19 08:49:29 +00:00
|
|
|
&to,
|
|
|
|
big.NewInt(10),
|
|
|
|
100000,
|
|
|
|
nil,
|
|
|
|
big.NewInt(ethparams.InitialBaseFee+1),
|
|
|
|
big.NewInt(1),
|
|
|
|
nil,
|
|
|
|
&types.AccessList{},
|
|
|
|
)
|
|
|
|
signedTx.From = addr.Hex()
|
|
|
|
|
2021-11-08 13:00:35 +00:00
|
|
|
tx := suite.CreateTestTx(signedTx, privKey, 1, false)
|
2021-10-19 08:49:29 +00:00
|
|
|
return tx
|
2021-12-28 07:59:28 +00:00
|
|
|
},
|
|
|
|
true,
|
|
|
|
false, true, true,
|
2021-10-19 08:49:29 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"success - CheckTx (cosmos tx not signed)",
|
|
|
|
func() sdk.Tx {
|
|
|
|
signedTx :=
|
|
|
|
evmtypes.NewTx(
|
|
|
|
suite.app.EvmKeeper.ChainID(),
|
2021-12-28 07:59:28 +00:00
|
|
|
1,
|
2021-10-19 08:49:29 +00:00
|
|
|
&to,
|
|
|
|
big.NewInt(10),
|
|
|
|
100000,
|
|
|
|
nil,
|
|
|
|
big.NewInt(ethparams.InitialBaseFee+1),
|
|
|
|
big.NewInt(1),
|
|
|
|
nil,
|
|
|
|
&types.AccessList{},
|
|
|
|
)
|
|
|
|
signedTx.From = addr.Hex()
|
|
|
|
|
|
|
|
tx := suite.CreateTestTx(signedTx, privKey, 1, false)
|
|
|
|
return tx
|
2021-12-28 07:59:28 +00:00
|
|
|
},
|
|
|
|
true,
|
|
|
|
false, true, true,
|
2021-10-19 08:49:29 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"fail - CheckTx (cosmos tx is not valid)",
|
|
|
|
func() sdk.Tx {
|
|
|
|
signedTx :=
|
|
|
|
evmtypes.NewTx(
|
|
|
|
suite.app.EvmKeeper.ChainID(),
|
2021-12-28 07:59:28 +00:00
|
|
|
1,
|
2021-10-19 08:49:29 +00:00
|
|
|
&to,
|
|
|
|
big.NewInt(10),
|
|
|
|
100000,
|
|
|
|
nil,
|
|
|
|
big.NewInt(ethparams.InitialBaseFee+1),
|
|
|
|
big.NewInt(1),
|
|
|
|
nil,
|
|
|
|
&types.AccessList{},
|
|
|
|
)
|
|
|
|
signedTx.From = addr.Hex()
|
|
|
|
|
|
|
|
txBuilder := suite.CreateTestTxBuilder(signedTx, privKey, 1, false)
|
|
|
|
// bigger than MaxGasWanted
|
|
|
|
txBuilder.SetGasLimit(uint64(1 << 63))
|
|
|
|
return txBuilder.GetTx()
|
2021-12-28 07:59:28 +00:00
|
|
|
},
|
|
|
|
true,
|
|
|
|
true, false, false,
|
2021-10-19 08:49:29 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"fail - CheckTx (memo too long)",
|
|
|
|
func() sdk.Tx {
|
|
|
|
signedTx :=
|
|
|
|
evmtypes.NewTx(
|
|
|
|
suite.app.EvmKeeper.ChainID(),
|
2021-12-28 07:59:28 +00:00
|
|
|
1,
|
2021-10-19 08:49:29 +00:00
|
|
|
&to,
|
|
|
|
big.NewInt(10),
|
|
|
|
100000,
|
|
|
|
nil,
|
|
|
|
big.NewInt(ethparams.InitialBaseFee+1),
|
|
|
|
big.NewInt(1),
|
|
|
|
nil,
|
|
|
|
&types.AccessList{},
|
|
|
|
)
|
|
|
|
signedTx.From = addr.Hex()
|
|
|
|
|
2021-11-08 13:00:35 +00:00
|
|
|
txBuilder := suite.CreateTestTxBuilder(signedTx, privKey, 1, false)
|
2021-10-19 08:49:29 +00:00
|
|
|
txBuilder.SetMemo(strings.Repeat("*", 257))
|
|
|
|
return txBuilder.GetTx()
|
2021-12-28 07:59:28 +00:00
|
|
|
},
|
|
|
|
true,
|
|
|
|
true, false, false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"fail - DynamicFeeTx without london hark fork",
|
|
|
|
func() sdk.Tx {
|
|
|
|
signedContractTx :=
|
|
|
|
evmtypes.NewTxContract(
|
|
|
|
suite.app.EvmKeeper.ChainID(),
|
|
|
|
1,
|
|
|
|
big.NewInt(10),
|
|
|
|
100000,
|
|
|
|
nil,
|
|
|
|
big.NewInt(ethparams.InitialBaseFee+1),
|
|
|
|
big.NewInt(1),
|
|
|
|
nil,
|
|
|
|
&types.AccessList{},
|
|
|
|
)
|
|
|
|
signedContractTx.From = addr.Hex()
|
|
|
|
|
|
|
|
tx := suite.CreateTestTx(signedContractTx, privKey, 1, false)
|
|
|
|
return tx
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
false, false, false,
|
2021-10-19 08:49:29 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range testCases {
|
|
|
|
suite.Run(tc.name, func() {
|
2021-12-28 07:59:28 +00:00
|
|
|
suite.enableFeemarket = true
|
|
|
|
suite.enableLondonHF = tc.enableLondonHF
|
|
|
|
suite.SetupTest() // reset
|
|
|
|
|
|
|
|
acc := suite.app.AccountKeeper.NewAccountWithAddress(suite.ctx, addr.Bytes())
|
|
|
|
suite.Require().NoError(acc.SetSequence(1))
|
|
|
|
suite.app.AccountKeeper.SetAccount(suite.ctx, acc)
|
|
|
|
|
2021-12-15 02:17:03 +00:00
|
|
|
suite.ctx = suite.ctx.WithIsCheckTx(tc.checkTx).WithIsReCheckTx(tc.reCheckTx)
|
2022-01-05 07:28:27 +00:00
|
|
|
suite.app.EvmKeeper.SetBalance(suite.ctx, addr, big.NewInt((ethparams.InitialBaseFee+10)*100000))
|
2021-10-19 08:49:29 +00:00
|
|
|
_, err := suite.anteHandler(suite.ctx, tc.txFn(), false)
|
|
|
|
if tc.expPass {
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
} else {
|
|
|
|
suite.Require().Error(err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2021-12-28 07:59:28 +00:00
|
|
|
suite.enableFeemarket = false
|
|
|
|
suite.enableLondonHF = true
|
2021-10-19 08:49:29 +00:00
|
|
|
}
|