2013-08-02 12:02:45 -07:00
|
|
|
|
2014-01-08 10:25:49 -08:00
|
|
|
MSG = {
|
2014-01-16 01:21:35 -08:00
|
|
|
TX: 1,
|
|
|
|
BLOCK: 2,
|
|
|
|
FILTERED_BLOCK: 3,
|
2013-08-02 12:02:45 -07:00
|
|
|
};
|
|
|
|
|
2014-01-08 10:25:49 -08:00
|
|
|
MSG.to_str = function(t) {
|
|
|
|
switch(t) {
|
|
|
|
case MSG.TX: return 'transaction';
|
|
|
|
case MSG.BLOCK: return 'block';
|
|
|
|
case MSG.FILTERED_BLOCK: return 'filtered block';
|
|
|
|
default: return 'unknown';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
exports.MSG = MSG;
|
|
|
|
|