We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9f0b266 + 39efcfd commit a253512Copy full SHA for a253512
modules/sdk-core/src/bitgo/utils/tss/ecdsa/ecdsaMPCv2.ts
@@ -737,7 +737,7 @@ export class EcdsaMPCv2Utils extends BaseEcdsaUtils {
737
} else if (requestType === RequestType.message) {
738
txOrMessageToSign = txRequest.messages![0].messageEncoded;
739
derivationPath = txRequest.messages![0].derivationPath || 'm/0';
740
- bufferContent = Buffer.from(txOrMessageToSign);
+ bufferContent = Buffer.from(txOrMessageToSign, 'hex');
741
} else {
742
throw new Error('Invalid request type');
743
}
0 commit comments