2018-03-14 10:36:59 +01:00
|
|
|
package transaction
|
|
|
|
|
2019-09-16 12:18:13 +03:00
|
|
|
import "github.com/CityOfZion/neo-go/pkg/io"
|
2018-03-14 10:36:59 +01:00
|
|
|
|
2019-01-25 14:20:35 +03:00
|
|
|
// TXer is interface that can act as the underlying data of
|
2018-03-14 10:36:59 +01:00
|
|
|
// a transaction.
|
|
|
|
type TXer interface {
|
2019-09-16 16:11:01 +03:00
|
|
|
io.Serializable
|
2018-03-14 10:36:59 +01:00
|
|
|
}
|