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