Manuel Araoz
11 years ago
4 changed files with 15 additions and 4 deletions
@ -1,7 +1,18 @@ |
|||
|
|||
exports.MSG = { |
|||
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; |
|||
|
|||
|
Loading…
Reference in new issue