Created
January 21, 2018 10:43
-
-
Save ssaurel/a3d54dc3fdca46e7d74e3180fd701c97 to your computer and use it in GitHub Desktop.
Blockchain data format for a tutorial on toutsurlebitcoin.fr
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
public class Blockchain { | |
private int difficulty; | |
private List<Block> blocks; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment