dashhive / DashJoin.js

Dash CoinJoin JavaScript (Browser & Node) SDK
MIT License
2 stars 0 forks source link

make Parser and Packer functions consistent and reciprocal #27

Open coolaj86 opened 1 month ago

coolaj86 commented 1 month ago
let obj = Parser.parseXyz(bytes);
let sameBytes = Packer.packXIyz(obj);
assert.equal(bytes, sameBytes);