2018-03-14 09:36:59 +00:00
|
|
|
package transaction
|
|
|
|
|
2019-09-16 09:18:13 +00:00
|
|
|
import "github.com/CityOfZion/neo-go/pkg/io"
|
2018-03-14 09:36:59 +00:00
|
|
|
|
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 {
|
2019-09-16 13:11:01 +00:00
|
|
|
io.Serializable
|
2018-03-14 09:36:59 +00:00
|
|
|
}
|