Skip to content

Commit

Permalink
Use correct v from Lattice signature (#587)
Browse files Browse the repository at this point in the history
  • Loading branch information
mholtzman authored Oct 8, 2021
1 parent ce70352 commit ea14b44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main/signers/lattice/Lattice/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ class Lattice extends Signer {
const clientSign = promisify(this.client.sign).bind(this.client)

return clientSign(signOpts).then(result => ({
v: result.sig.v[0],
v: result.sig.v.toString('hex'),
r: result.sig.r,
s: result.sig.s
}))
Expand Down

0 comments on commit ea14b44

Please sign in to comment.