(ctx context.Context, req *InputAccountDataRequest, res *InputAccountDataResponse)
| 62 | } |
| 63 | |
| 64 | func (t *UserInternalAPITrace) InputAccountData(ctx context.Context, req *InputAccountDataRequest, res *InputAccountDataResponse) error { |
| 65 | err := t.Impl.InputAccountData(ctx, req, res) |
| 66 | util.GetLogger(ctx).Infof("InputAccountData req=%+v res=%+v", js(req), js(res)) |
| 67 | return err |
| 68 | } |
| 69 | func (t *UserInternalAPITrace) PerformAccountCreation(ctx context.Context, req *PerformAccountCreationRequest, res *PerformAccountCreationResponse) error { |
| 70 | err := t.Impl.PerformAccountCreation(ctx, req, res) |
| 71 | util.GetLogger(ctx).Infof("PerformAccountCreation req=%+v res=%+v", js(req), js(res)) |
nothing calls this directly
no test coverage detected