fix comments
This commit is contained in:
parent
e01fb0cc62
commit
b2543c0739
2 changed files with 4 additions and 0 deletions
|
@ -122,10 +122,12 @@ func (m *Request) SetInfo(info NodeInfo) {
|
||||||
m.Info = info
|
m.Info = info
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Size returns the size necessary for a binary representation of the state.
|
||||||
func (x Request_State) Size() int {
|
func (x Request_State) Size() int {
|
||||||
return 4
|
return 4
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Bytes returns a binary representation of the state.
|
||||||
func (x Request_State) Bytes() []byte {
|
func (x Request_State) Bytes() []byte {
|
||||||
data := make([]byte, x.Size())
|
data := make([]byte, x.Size())
|
||||||
|
|
||||||
|
|
|
@ -22,10 +22,12 @@ func (nt NodeRole) String() string {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Size returns the size necessary for a binary representation of the NodeRole.
|
||||||
func (nt NodeRole) Size() int {
|
func (nt NodeRole) Size() int {
|
||||||
return 4
|
return 4
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Bytes returns a binary representation of the NodeRole.
|
||||||
func (nt NodeRole) Bytes() []byte {
|
func (nt NodeRole) Bytes() []byte {
|
||||||
data := make([]byte, nt.Size())
|
data := make([]byte, nt.Size())
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue