neoneo-go/pkg/core/transaction/txer.go
2020-03-03 17:21:42 +03:00

9 lines
185 B
Go

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