neoneo-go/pkg/core/transaction/txer.go
Roman Khimov 0bb8950f89 make TXer and Payload implement Serializable
Both are duplicating Serializable at the moment, but let's keep them for the
future.
2019-09-17 13:21:52 +03:00

9 lines
186 B
Go

package transaction
import "github.com/CityOfZion/neo-go/pkg/io"
// TXer is interface that can act as the underlying data of
// a transaction.
type TXer interface {
io.Serializable
}