We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/gengo/grpc-gateway/blob/master/protoc-gen-grpc-gateway/gengateway/generator.go#L48
alias := fmt.Sprintf("%s_%d", pkg.Name, i) if err := reg.ReserveGoPackageAlias(pkg.Name, pkg.Path); err != nil { continue }
reg.ReserveGoPackageAlias(pkg.Name, pkg.Path) should be reg.ReserveGoPackageAlias(alias, pkg.Path) instead.
reg.ReserveGoPackageAlias(pkg.Name, pkg.Path)
reg.ReserveGoPackageAlias(alias, pkg.Path)
The text was updated successfully, but these errors were encountered:
f748a47
Merge pull request #17 from tronprotocol/feature/add_TotalTransaction
ba4df02
add TotalTransaction method return all TotalTransaction amount.
No branches or pull requests
https://github.com/gengo/grpc-gateway/blob/master/protoc-gen-grpc-gateway/gengateway/generator.go#L48
reg.ReserveGoPackageAlias(pkg.Name, pkg.Path)
should bereg.ReserveGoPackageAlias(alias, pkg.Path)
instead.The text was updated successfully, but these errors were encountered: