Skip to content

Instantly share code, notes, and snippets.

@eddywm
Last active January 17, 2018 09:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eddywm/4d6468e8d97e3b565703190a67cd0ac2 to your computer and use it in GitHub Desktop.
Save eddywm/4d6468e8d97e3b565703190a67cd0ac2 to your computer and use it in GitHub Desktop.
Minimal Transaction output data structure
data class TransactionOutput(
var amount: Long = 0,
var lockingScript: LinkedList<String> = LinkedList()
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment