Created
October 8, 2017 17:25
-
-
Save brakmic/95231062aee34055a7e2fe4072f48c28 to your computer and use it in GitHub Desktop.
Bitcoin Transaction Input (simplified)
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
class TransactionInput { | |
public: | |
uint256 HashKey; | |
uint32_t IndexNumber; | |
uint32_t SignatureScriptLength; | |
uint256 ResponseScript; | |
uint32_t InputSequenceNumber; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment