accounts/abi: refactor Method#Sig() to use index in range iterator directly to assign types

This commit is contained in:
Roc Yu 2018-07-18 22:36:42 +08:00
parent 323428865f
commit f117054055

View file

@ -47,10 +47,8 @@ type Method struct {
// Please note that "int" is substitute for its canonical representation "int256"
func (method Method) Sig() string {
types := make([]string, len(method.Inputs))
i := 0
for _, input := range method.Inputs {
for i, input := range method.Inputs {
types[i] = input.Type.String()
i++
}
return fmt.Sprintf("%v(%v)", method.Name, strings.Join(types, ","))
}