Skip to content

Instantly share code, notes, and snippets.

@obscuren
Created May 11, 2016 09:49
Show Gist options
  • Save obscuren/8f091390df4b98c4134a1b7794e19bf6 to your computer and use it in GitHub Desktop.
Save obscuren/8f091390df4b98c4134a1b7794e19bf6 to your computer and use it in GitHub Desktop.
func (_TemperatureMeasurementA *TemperatureMeasurementACaller) TemperatureRange(opts *bind.CallOpts) (uint8, uint8, error) {
out := []interface{}{}
err := _TemperatureMeasurementA.contract.Call(opts, out, "temperatureRange")
value := reflect.ValueOf(out)
typ := value.Type()
fmt.Println(typ)
return out[0].(uint8), out[1].(uint8), err
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment