mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
25 lines
797 B
Go
25 lines
797 B
Go
package keeper_test
|
|
|
|
import (
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/cosmos/cosmos-sdk/x/auth"
|
|
authexported "github.com/cosmos/cosmos-sdk/x/auth/exported"
|
|
|
|
"github.com/kava-labs/kava/app"
|
|
)
|
|
|
|
func c(denom string, amount int64) sdk.Coin { return sdk.NewInt64Coin(denom, amount) }
|
|
func cs(coins ...sdk.Coin) sdk.Coins { return sdk.NewCoins(coins...) }
|
|
func i(n int64) sdk.Int { return sdk.NewInt(n) }
|
|
func is(ns ...int64) (is []sdk.Int) {
|
|
for _, n := range ns {
|
|
is = append(is, sdk.NewInt(n))
|
|
}
|
|
return
|
|
}
|
|
|
|
func NewAuthGenStateFromAccs(accounts authexported.GenesisAccounts) app.GenesisState {
|
|
authGenesis := auth.NewGenesisState(auth.DefaultParams(), accounts)
|
|
return app.GenesisState{auth.ModuleName: auth.ModuleCdc.MustMarshalJSON(authGenesis)}
|
|
}
|