Select Git revision
CONTRIBUTING.md
After you've reviewed these contribution guidelines, you'll be all set to
contribute to this project.
App.java 581 B
package fr.miage;
import java.security.NoSuchAlgorithmException;
/**
* Hello world!
*
*/
public class App
{
public static void main( String[] args ) throws NoSuchAlgorithmException
{
System.out.println("Début de la blockchain");
// Création de la blockchain
Blockchain blockchain = new Blockchain("BloBlockchain");
//Création de 2 wallets
Wallet bobWallet = new Wallet("Ceci est la clé privé de bob");
///System.out.println(bobWallet.getPublicKey());
//System.out.println(bobWallet.getPrivateKey());
}
}