Skip to content

Instantly share code, notes, and snippets.

@alexbosworth
Created February 21, 2017 17:55
Show Gist options
  • Save alexbosworth/e73b3a2ae23a0e8057bf03e1a8bf75aa to your computer and use it in GitHub Desktop.
Save alexbosworth/e73b3a2ae23a0e8057bf03e1a8bf75aa to your computer and use it in GitHub Desktop.
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