2018-03-14 09:36:59 +00:00
|
|
|
package transaction
|
|
|
|
|
|
|
|
import "io"
|
|
|
|
|
2019-01-25 11:20:35 +00:00
|
|
|
// TXer is interface that can act as the underlying data of
|
2018-03-14 09:36:59 +00:00
|
|
|
// a transaction.
|
|
|
|
type TXer interface {
|
|
|
|
DecodeBinary(io.Reader) error
|
|
|
|
EncodeBinary(io.Writer) error
|
2019-08-30 08:28:30 +00:00
|
|
|
Size() int
|
2018-03-14 09:36:59 +00:00
|
|
|
}
|