Last active
January 16, 2018 16:36
-
-
Save eddywm/3c50e75472edb62dcfc4fd2bb542ae1f to your computer and use it in GitHub Desktop.
Minimal Transaction Input data structure
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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