mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-26 15:22:15 +00:00
10 lines
142 B
Go
10 lines
142 B
Go
|
package binary
|
||
|
|
||
|
import "io"
|
||
|
|
||
|
type Binary interface {
|
||
|
ByteSize() int
|
||
|
WriteTo(io.Writer) (int64, error)
|
||
|
Equals(Binary) bool
|
||
|
}
|