mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-04 10:21:40 +00:00
refactor: rename MsgInitialize to MsgSpawn for clarity
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user