parent
44709cf6fe
commit
f39b51deee
2 changed files with 15 additions and 8 deletions
|
@ -53,6 +53,12 @@ func GetReferences(t Transaction) []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
|
||||
// package on how to use them. This function uses `Neo.Transaction.GetInputs`
|
||||
// syscall.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue