refactor: rename MsgInitialize to MsgSpawn for clarity

This commit is contained in:
Prad Nukala
2024-12-24 00:59:42 -05:00
parent 7e50d7f76d
commit 630e4ad7f0
5 changed files with 289 additions and 283 deletions
+7
View File
@@ -34,3 +34,10 @@ func (ms msgServer) Initialize(ctx context.Context, msg *types.MsgInitialize) (*
panic("Initialize is unimplemented")
return &types.MsgInitializeResponse{}, nil
}
// Spawn implements types.MsgServer.
func (ms msgServer) Spawn(ctx context.Context, msg *types.MsgSpawn) (*types.MsgSpawnResponse, error) {
// ctx := sdk.UnwrapSDKContext(goCtx)
panic("Spawn is unimplemented")
return &types.MsgSpawnResponse{}, nil
}