updates from eordano comments. Better jsdocs some more tests. Still WIP

This commit is contained in:
Matias Alejo Garcia 2014-11-25 09:45:44 -03:00
commit 6a540be8fc
3 changed files with 443 additions and 219 deletions

View file

@ -11,6 +11,11 @@ function Tx() {
};
Tx.prototype.serialize = function() {
return new Buffer('1234','hex');
};
Tx.prototype.getSize = function() {
return 1;
};