Created
February 21, 2017 17:55
-
-
Save alexbosworth/e73b3a2ae23a0e8057bf03e1a8bf75aa to your computer and use it in GitHub Desktop.
This file contains hidden or 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
import Foundation | |
/** Outpoint | |
*/ | |
struct Outpoint { | |
/** Index | |
*/ | |
let index: UInt32 | |
/** Number of bytes for the outpoint index | |
*/ | |
static let indexByteCount = 4 | |
/** Transaction id | |
*/ | |
let transactionId: TransactionHash | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment