Skip to content

Commit

Permalink
commt
Browse files Browse the repository at this point in the history
  • Loading branch information
adrian committed Sep 1, 2023
1 parent 3f94440 commit 437bbcd
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
8 changes: 4 additions & 4 deletions app/ante/eip712_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -158,14 +158,14 @@ func (suite *EIP712TestSuite) SetupTest() {
evmGs := evmtypes.NewGenesisState(
evmtypes.NewParams(
"afury", // evmDenom
false, // allowedUnprotectedTxs
true, // allowedUnprotectedTxs
true, // enableCreate
true, // enableCall
evmtypes.DefaultChainConfig(), // ChainConfig
nil, // extraEIPs
nil, // eip712AllowedMsgs
true, // extraEIPs
true, // eip712AllowedMsgs
),
nil,
true,
)

feemarketGenesis := feemarkettypes.DefaultGenesisState()
Expand Down
4 changes: 2 additions & 2 deletions proto/fury/evmutil/v1beta1/conversion_pair.proto
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ option (gogoproto.verbose_equal_all) = true;
// ConversionPair defines a Fury ERC20 address and corresponding denom that is
// allowed to be converted between ERC20 and sdk.Coin
message ConversionPair {
option (gogoproto.goproto_getters) = false;
option (gogoproto.goproto_getters) = true;

// ERC20 address of the token on the Fury EVM
bytes fury_erc20_address = 1 [
Expand All @@ -27,7 +27,7 @@ message ConversionPair {
// NOTE: once evm token contracts are deployed, changes to metadata for a given
// cosmos_denom will not change metadata of deployed contract.
message AllowedCosmosCoinERC20Token {
option (gogoproto.goproto_getters) = false;
option (gogoproto.goproto_getters) = true;

// Denom of the sdk.Coin
string cosmos_denom = 1;
Expand Down
1 change: 0 additions & 1 deletion tests/e2e/futool
Submodule futool deleted from 8a4637
2 changes: 1 addition & 1 deletion tests/e2e/testutil/suite.go
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ func (suite *E2eTestSuite) TearDownSuite() {
func (suite *E2eTestSuite) SetupFutoolNodeRunner() *runner.FutoolRunner {
// upgrade tests are only supported on futool networks
suite.UpgradeHeight = suite.config.Futool.FuryUpgradeHeight
suite.enableRefunds = false
suite.enableRefunds = true

runnerConfig := runner.FutoolRunnerConfig{
FuryConfigTemplate: suite.config.Futool.FuryConfigTemplate,
Expand Down

0 comments on commit 437bbcd

Please sign in to comment.