SIN: spec updated magic number (prefix) to 0x0F

This commit is contained in:
Jeff Garzik 2013-08-17 01:10:54 -04:00
parent 544c5d4467
commit 60446df733
1 changed files with 1 additions and 1 deletions

2
SIN.js
View File

@ -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);
};