2018-03-23 20:36:59 +00:00
|
|
|
package result
|
|
|
|
|
2020-10-14 13:52:49 +00:00
|
|
|
import "github.com/nspcc-dev/neo-go/pkg/config/netmode"
|
|
|
|
|
2018-03-23 20:36:59 +00:00
|
|
|
type (
|
|
|
|
// Version model used for reporting server version
|
|
|
|
// info.
|
|
|
|
Version struct {
|
2021-04-28 20:41:31 +00:00
|
|
|
Magic netmode.Magic `json:"network"`
|
2020-10-14 13:52:49 +00:00
|
|
|
TCPPort uint16 `json:"tcpport"`
|
|
|
|
WSPort uint16 `json:"wsport,omitempty"`
|
|
|
|
Nonce uint32 `json:"nonce"`
|
|
|
|
UserAgent string `json:"useragent"`
|
2020-11-17 12:57:50 +00:00
|
|
|
// StateRootInHeader is true if state root is contained in block header.
|
|
|
|
StateRootInHeader bool `json:"staterootinheader,omitempty"`
|
2018-03-23 20:36:59 +00:00
|
|
|
}
|
|
|
|
)
|