Toggle navigation
Home
Latest pastes
FAQ
Random
BitBin is shutting down!
Register
Login
Block.java
SUBMITTED BY:
Guest
DATE:
Feb. 2, 2014, 9:18 p.m.
FORMAT:
Java
SIZE:
500 Bytes
Raw
Download
Tweet
HITS:
1966
Go to comments
Report
//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
}
}
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus