You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
306 B
20 lines
306 B
MSG = {
|
|
TX: 1,
|
|
BLOCK: 2,
|
|
FILTERED_BLOCK: 3,
|
|
};
|
|
|
|
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;
|
|
|