0bb8950f89
Both are duplicating Serializable at the moment, but let's keep them for the future.
9 lines
186 B
Go
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
|
|
}
|