2022-05-31 16:28:46 +00:00
|
|
|
package testutil
|
|
|
|
|
|
|
|
import (
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper"
|
2022-06-19 09:43:41 +00:00
|
|
|
evmtypes "github.com/evmos/ethermint/x/evm/types"
|
2022-05-31 16:28:46 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// FundAccount is a utility function that funds an account by minting and
|
|
|
|
// sending the coins to the address. This should be used for testing purposes
|
|
|
|
// only!
|
|
|
|
func FundAccount(bankKeeper bankkeeper.Keeper, ctx sdk.Context, addr sdk.AccAddress, amounts sdk.Coins) error {
|
|
|
|
if err := bankKeeper.MintCoins(ctx, evmtypes.ModuleName, amounts); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return bankKeeper.SendCoinsFromModuleToAccount(ctx, evmtypes.ModuleName, addr, amounts)
|
|
|
|
}
|
|
|
|
|
|
|
|
// FundModuleAccount is a utility function that funds a module account by
|
|
|
|
// minting and sending the coins to the address. This should be used for testing
|
|
|
|
// purposes only!
|
|
|
|
func FundModuleAccount(bankKeeper bankkeeper.Keeper, ctx sdk.Context, recipientMod string, amounts sdk.Coins) error {
|
|
|
|
if err := bankKeeper.MintCoins(ctx, evmtypes.ModuleName, amounts); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return bankKeeper.SendCoinsFromModuleToModule(ctx, evmtypes.ModuleName, recipientMod, amounts)
|
|
|
|
}
|