Skip to content

Instantly share code, notes, and snippets.

@ssaurel
Created January 21, 2018 11:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ssaurel/b24b96a0166093332bf22a7720bbbf89 to your computer and use it in GitHub Desktop.
Save ssaurel/b24b96a0166093332bf22a7720bbbf89 to your computer and use it in GitHub Desktop.
Our Blockchain in Action on toutsurlebitcoin.fr
package fr.toutsurlebitcoin.myblockchain;
public class Main1 {
public static void main(String[] args) {
Blockchain blockchain = new Blockchain(4);
blockchain.addBlock(blockchain.newBlock("Tout sur le Bitcoin"));
blockchain.addBlock(blockchain.newBlock("Sylvain Saurel"));
blockchain.addBlock(blockchain.newBlock("https://www.toutsurlebitcoin.fr"));
System.out.println("Blockchain valid ? " + blockchain.isBlockChainValid());
System.out.println(blockchain);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment