30 lines
809 B
Go
30 lines
809 B
Go
|
package simulation
|
||
|
|
||
|
import (
|
||
|
"math/rand"
|
||
|
|
||
|
"cosmos-test/x/cosmostest/keeper"
|
||
|
"cosmos-test/x/cosmostest/types"
|
||
|
"github.com/cosmos/cosmos-sdk/baseapp"
|
||
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
||
|
simtypes "github.com/cosmos/cosmos-sdk/types/simulation"
|
||
|
)
|
||
|
|
||
|
func SimulateMsgNewBid(
|
||
|
ak types.AccountKeeper,
|
||
|
bk types.BankKeeper,
|
||
|
k keeper.Keeper,
|
||
|
) simtypes.Operation {
|
||
|
return func(r *rand.Rand, app *baseapp.BaseApp, ctx sdk.Context, accs []simtypes.Account, chainID string,
|
||
|
) (simtypes.OperationMsg, []simtypes.FutureOperation, error) {
|
||
|
simAccount, _ := simtypes.RandomAcc(r, accs)
|
||
|
msg := &types.MsgNewBid{
|
||
|
Creator: simAccount.Address.String(),
|
||
|
}
|
||
|
|
||
|
// TODO: Handling the NewBid simulation
|
||
|
|
||
|
return simtypes.NoOpMsg(types.ModuleName, msg.Type(), "NewBid simulation not implemented"), nil, nil
|
||
|
}
|
||
|
}
|