accounts/abi/abigen: remove unused template helper function

This commit is contained in:
Jared Wasinger 2025-02-17 13:26:24 -08:00
parent a9b2384c19
commit 9eddba42ba

View file

@ -357,9 +357,6 @@ func BindV2(types []string, abis []string, bytecodes []string, pkg string, libs
"bindtopictype": bindTopicType, "bindtopictype": bindTopicType,
"capitalise": abi.ToCamelCase, "capitalise": abi.ToCamelCase,
"decapitalise": decapitalise, "decapitalise": decapitalise,
"add": func(val1, val2 int) int {
return val1 + val2
},
"ispointertype": isPointerType, "ispointertype": isPointerType,
"underlyingbindtype": underlyingBindType, "underlyingbindtype": underlyingBindType,
} }