Skip to content

Commit

Permalink
fix: eth: incorrect struct tags (#10309)
Browse files Browse the repository at this point in the history
  • Loading branch information
Stebalien authored Feb 17, 2023
1 parent 73102e9 commit e51f3e9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion api/proxy_gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion gen/api/proxygen.go
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,8 @@ type {{.Num}}Struct struct {
type {{.Num}}Methods struct {
{{range .Methods}}
{{.Num}} func({{.NamedParams}}) ({{.Results}}) `+"`"+`{{range .Tags}}{{index . 0}}:"{{index . 1}}"{{end}}`+"`"+`
{{.Num}} func({{.NamedParams}}) ({{.Results}}) `+"`"+`{{$first := true}}{{range .Tags}}{{if $first}}{{$first = false}}{{else}} {{end}}{{index . 0}}:"{{index . 1}}"{{end}}`+"`"+`
{{end}}
}
Expand Down
4 changes: 2 additions & 2 deletions itests/deals_partial_retrieval_dm-level_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ func testDMExportAsFile(ctx context.Context, client *kit.TestFullNode, expDirect
func testV0RetrievalAsFile(ctx context.Context, client *kit.TestFullNode, retOrder api0.RetrievalOrder, tempDir string) error {
out := tempDir + string(os.PathSeparator) + "exp-test" + retOrder.Root.String()

cv0 := &api0.WrapperV1Full{client.FullNode} //nolint:govet
cv0 := &api0.WrapperV1Full{FullNode: client.FullNode}
err := cv0.ClientRetrieve(ctx, retOrder, &api.FileRef{
Path: out,
})
Expand Down Expand Up @@ -220,7 +220,7 @@ func tesV0RetrievalAsCar(ctx context.Context, client *kit.TestFullNode, retOrder
}
defer out.Close() //nolint:errcheck

cv0 := &api0.WrapperV1Full{client.FullNode} //nolint:govet
cv0 := &api0.WrapperV1Full{FullNode: client.FullNode}
err = cv0.ClientRetrieve(ctx, retOrder, &api.FileRef{
Path: out.Name(),
IsCAR: true,
Expand Down

0 comments on commit e51f3e9

Please sign in to comment.