neo-go/pkg/core/transaction/inout.go

9 lines
181 B
Go
Raw Normal View History

package transaction
// InOut represents an Input bound to its corresponding Output which is a useful
// combination for many purposes.
type InOut struct {
In Input
Out Output
}