Last active
January 17, 2018 09:36
-
-
Save eddywm/4d6468e8d97e3b565703190a67cd0ac2 to your computer and use it in GitHub Desktop.
Minimal Transaction output 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 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