forked from TrueCloudLab/neoneo-go
9 lines
184 B
Go
9 lines
184 B
Go
package transaction
|
|
|
|
import "github.com/nspcc-dev/neo-go/pkg/util"
|
|
|
|
// Result represents the Result of a transaction.
|
|
type Result struct {
|
|
AssetID util.Uint256
|
|
Amount util.Fixed8
|
|
}
|