mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-27 03:58:06 +00:00
9 lines
181 B
Go
9 lines
181 B
Go
|
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
|
||
|
}
|