2018-03-17 12:53:21 +01:00
|
|
|
package transaction
|
|
|
|
|
|
|
|
import (
|
2019-09-16 12:18:13 +03:00
|
|
|
"github.com/CityOfZion/neo-go/pkg/io"
|
2018-03-17 12:53:21 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// IssueTX represents a issue transaction.
|
|
|
|
// This TX has not special attributes.
|
|
|
|
type IssueTX struct{}
|
|
|
|
|
2019-09-16 19:31:49 +03:00
|
|
|
// DecodeBinary implements Serializable interface.
|
|
|
|
func (tx *IssueTX) DecodeBinary(r *io.BinReader) {
|
2018-03-17 12:53:21 +01:00
|
|
|
}
|
|
|
|
|
2019-09-16 19:31:49 +03:00
|
|
|
// EncodeBinary implements Serializable interface.
|
|
|
|
func (tx *IssueTX) EncodeBinary(w *io.BinWriter) {
|
2018-03-17 12:53:21 +01:00
|
|
|
}
|