Skip to content

Instantly share code, notes, and snippets.

@eddywm
Last active January 16, 2018 16: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/3c50e75472edb62dcfc4fd2bb542ae1f to your computer and use it in GitHub Desktop.
Save eddywm/3c50e75472edb62dcfc4fd2bb542ae1f to your computer and use it in GitHub Desktop.
Minimal Transaction Input data structure
data class TransactionInput (
var txid: String = ""
var vout: Int = 0
var amount: Long = 0,
var unlockingScript:LinkedList<String> = LinkedList()
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment