Skip to content

Commit

Permalink
fix: signDataType
Browse files Browse the repository at this point in the history
  • Loading branch information
ieow committed Aug 22, 2023
1 parent 6ee2618 commit 927c506
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ async function signTypedData(sign: (msgHash: Buffer, rawMsg?: Buffer) => Promise
modifiedV = modifiedV + 27;
}

return concatSig(toBuffer(v), r, s);
return concatSig(toBuffer(modifiedV), r, s);
}

export function getProviderHandlers({
Expand Down

0 comments on commit 927c506

Please sign in to comment.