Skip to content

Instantly share code, notes, and snippets.

@ssaurel
Last active January 21, 2018 09:39
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/2e182c9d16e4ef6ddd62215bba547abf to your computer and use it in GitHub Desktop.
Save ssaurel/2e182c9d16e4ef6ddd62215bba547abf to your computer and use it in GitHub Desktop.
Block data format for a tutorial on toutsurlebitcoin.fr
public class Block {
private int index;
private long timestamp;
private String hash;
private String previousHash;
private String data;
private int nonce;
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment