30 lines
1.1 KiB
Go
30 lines
1.1 KiB
Go
package testutil
|
|
|
|
import (
|
|
evmtypes "github.com/cerc-io/laconicd/x/evm/types"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper"
|
|
)
|
|
|
|
// 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)
|
|
}
|