//KriszCraftCoin project
// Block model

package model;

/**
 * Created by KRISZTIAN on 2014.02.01..
 */
public class Block {
    private int nTime, nHeight;
    private String hash, creator;

    public Block(int nTime, String hash, String creator, int nHeight){
    this.nTime = nTime;
    this.hash = hash;
    this.creator = creator;
    this.nHeight = nHeight;
    }
	
	public static String getHash(){
		return this.hash
	}
}