Skip to content

Commit

Permalink
fix: OracleConfig.VMVersion should be uint16, not uint64
Browse files Browse the repository at this point in the history
  • Loading branch information
randomshinichi committed Sep 11, 2019
1 parent 755d779 commit 3cb08f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aeternity/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ type OracleConfig struct {
QueryTTLValue uint64 `json:"query_ttl_value" yaml:"query_ttl_value" mapstructure:"query_ttl_value"`
ResponseTTLType uint64 `json:"response_ttl_type" yaml:"response_ttl_type" mapstructure:"response_ttl_type"`
ResponseTTLValue uint64 `json:"response_ttl_value" yaml:"response_ttl_value" mapstructure:"response_ttl_value"`
VMVersion uint64 `json:"vm_version" yaml:"vm_version" mapstructure:"vm_version"`
VMVersion uint16 `json:"vm_version" yaml:"vm_version" mapstructure:"vm_version"`
}

// StateChannelConfig configurations for contracts TODO: not complete
Expand Down

0 comments on commit 3cb08f7

Please sign in to comment.