From 60446df733682e274a5deb6f85a7104511608bc6 Mon Sep 17 00:00:00 2001 From: Jeff Garzik Date: Sat, 17 Aug 2013 01:10:54 -0400 Subject: [PATCH] SIN: spec updated magic number (prefix) to 0x0F --- SIN.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SIN.js b/SIN.js index d4f15a5..dba5cc3 100644 --- a/SIN.js +++ b/SIN.js @@ -11,7 +11,7 @@ function ClassSpec(b) { }; this.data = new Buffer(1 + 1 + payload.length); this.__proto__ = this.encodings['binary']; - this.prefix(0x18); // SIN magic number, in numberspace + this.prefix(0x0F); // SIN magic number, in numberspace this.type(type); this.payload(payload); };