Skip to content

Instantly share code, notes, and snippets.

@josephchang10
josephchang10 / blockchain.swift
Created December 27, 2017 14:25
在 iOS 中实现区块链
import Cocoa
import Foundation
class Block {
var index: Int = 0
var dateCreated: String
var previousHash: String!
var hash: String!
var nonce: Int