Add peer_protocol.Integer.Uint32
This commit is contained in:
parent
86ca9ffa7e
commit
ee985e51cb
|
@ -19,3 +19,7 @@ func (i Integer) Int() int {
|
||||||
func (i Integer) Uint64() uint64 {
|
func (i Integer) Uint64() uint64 {
|
||||||
return uint64(i)
|
return uint64(i)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (i Integer) Uint32() uint32 {
|
||||||
|
return uint32(i)
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue