accounts/abi: handle the "constant" modifier for functions

pull/2355/head
Péter Szilágyi 9 years ago
parent 2855a93ede
commit 270ea6eec3
  1. 4
      accounts/abi/abi.go
  2. 7
      accounts/abi/method.go

@ -270,7 +270,7 @@ func (abi *ABI) UnmarshalJSON(data []byte) error {
var fields []struct {
Type string
Name string
Const bool
Constant bool
Indexed bool
Inputs []Argument
Outputs []Argument
@ -288,7 +288,7 @@ func (abi *ABI) UnmarshalJSON(data []byte) error {
case "function", "":
abi.Methods[field.Name] = Method{
Name: field.Name,
Const: field.Const,
Const: field.Constant,
Inputs: field.Inputs,
Outputs: field.Outputs,
}

@ -67,8 +67,11 @@ func (m Method) String() string {
}
outputs[i] += output.Type.String()
}
return fmt.Sprintf("function %v(%v) returns(%v)", m.Name, strings.Join(inputs, ", "), strings.Join(outputs, ", "))
constant := ""
if m.Const {
constant = "constant "
}
return fmt.Sprintf("function %v(%v) %sreturns(%v)", m.Name, strings.Join(inputs, ", "), constant, strings.Join(outputs, ", "))
}
func (m Method) Id() []byte {

Loading…
Cancel
Save