parent
44709cf6fe
commit
f39b51deee
2 changed files with 15 additions and 8 deletions
|
@ -65,14 +65,15 @@ var syscalls = map[string]map[string]string{
|
||||||
"GetTransaction": "Neo.Block.GetTransaction",
|
"GetTransaction": "Neo.Block.GetTransaction",
|
||||||
},
|
},
|
||||||
"transaction": {
|
"transaction": {
|
||||||
"GetAttributes": "Neo.Transaction.GetAttributes",
|
"GetAttributes": "Neo.Transaction.GetAttributes",
|
||||||
"GetHash": "Neo.Transaction.GetHash",
|
"GetHash": "Neo.Transaction.GetHash",
|
||||||
"GetInputs": "Neo.Transaction.GetInputs",
|
"GetInputs": "Neo.Transaction.GetInputs",
|
||||||
"GetOutputs": "Neo.Transaction.GetOutputs",
|
"GetOutputs": "Neo.Transaction.GetOutputs",
|
||||||
"GetReferences": "Neo.Transaction.GetReferences",
|
"GetReferences": "Neo.Transaction.GetReferences",
|
||||||
"GetScript": "Neo.InvocationTransaction.GetScript",
|
"GetScript": "Neo.InvocationTransaction.GetScript",
|
||||||
"GetType": "Neo.Transaction.GetType",
|
"GetType": "Neo.Transaction.GetType",
|
||||||
"GetWitnesses": "Neo.Transaction.GetWitnesses",
|
"GetUnspentCoins": "Neo.Transaction.GetUnspentCoins",
|
||||||
|
"GetWitnesses": "Neo.Transaction.GetWitnesses",
|
||||||
},
|
},
|
||||||
"asset": {
|
"asset": {
|
||||||
"Create": "Neo.Asset.Create",
|
"Create": "Neo.Asset.Create",
|
||||||
|
|
|
@ -53,6 +53,12 @@ func GetReferences(t Transaction) []interface{} {
|
||||||
return []interface{}{}
|
return []interface{}{}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GetUnspentCoins returns a slice of not yet spent ouputs of a given transaction.
|
||||||
|
// This function uses `Neo.Transaction.GetUnspentCoint` syscall.
|
||||||
|
func GetUnspentCoins(t Transaction) []output.Output {
|
||||||
|
return []output.Output{}
|
||||||
|
}
|
||||||
|
|
||||||
// GetInputs returns a slice of inputs of a given Transaction. Refer to input
|
// GetInputs returns a slice of inputs of a given Transaction. Refer to input
|
||||||
// package on how to use them. This function uses `Neo.Transaction.GetInputs`
|
// package on how to use them. This function uses `Neo.Transaction.GetInputs`
|
||||||
// syscall.
|
// syscall.
|
||||||
|
|
Loading…
Reference in a new issue