We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e97cef6 commit 8b506f5Copy full SHA for 8b506f5
accounts/abi/abigen/bindv2.go
@@ -167,10 +167,7 @@ func (cb *contractBinder) bindMethod(original abi.Method) error {
167
}
168
169
normalized.Outputs = normalizeArgs(original.Outputs)
170
- for j, output := range normalized.Outputs {
171
- if output.Name != "" {
172
- normalized.Outputs[j].Name = abi.ToCamelCase(output.Name)
173
- }
+ for _, output := range normalized.Outputs {
174
if hasStruct(output.Type) {
175
cb.binder.BindStructType(output.Type)
176
0 commit comments