Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
beer-1 committed Nov 15, 2024
1 parent b238458 commit 12dc667
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions integration-tests/erc721_transfer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@ func (suite *KeeperTestSuite) convertAppToMApp(chain *ibctesting.TestChain) {
genBals[i] = balance
}

map := minievmapp.SetupWithGenesisAccounts(chain.Vals.Copy(), genAccs, genBals...)
baseapp.SetChainID(chain.ChainID)(map.GetBaseApp())
chain.App = map
chain.Codec = map.AppCodec()
chain.TxConfig = map.TxConfig()
miniApp := minievmapp.SetupWithGenesisAccounts(chain.Vals.Copy(), genAccs, genBals...)
baseapp.SetChainID(chain.ChainID)(miniApp.GetBaseApp())
chain.App = miniApp
chain.Codec = miniApp.AppCodec()
chain.TxConfig = miniApp.TxConfig()

chain.CurrentHeader = cmtproto.Header{
ChainID: chain.ChainID,
Expand Down
2 changes: 1 addition & 1 deletion x/evm/contracts/counter/Counter.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion x/evm/contracts/erc20/ERC20.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion x/evm/contracts/erc20_acl/ERC20ACL.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion x/evm/contracts/erc20_factory/ERC20Factory.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion x/evm/contracts/erc20_wrapper/ERC20Wrapper.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion x/evm/contracts/initia_erc20/InitiaERC20.go

Large diffs are not rendered by default.

0 comments on commit 12dc667

Please sign in to comment.