fix: zero pad correctly

This commit is contained in:
Michael Vines
2018-09-30 20:07:28 -07:00
parent 4f1112534d
commit aa1d6ba4d4
2 changed files with 5 additions and 1 deletions

View File

@ -56,7 +56,7 @@ export class PublicKey {
}
const zeroPad = new Buffer(32);
b.copy(zeroPad, 32 - b.length);
b.copy(zeroPad);
return zeroPad;
}