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.
1 parent 8987b9b commit ebd9630Copy full SHA for ebd9630
packages/lit-node-client-nodejs/src/lib/helpers/get-signatures.ts
@@ -105,8 +105,12 @@ export const getSignatures = async (params: {
105
// -- combine
106
const combinedSignature = await combineEcdsaShares(signedMessageShares);
107
108
- const _publicKey = mostCommonString(signedMessageShares.map((s) => s.publicKey));
109
- const _dataSigned = mostCommonString(signedMessageShares.map((s) => s.dataSigned));
+ const _publicKey = mostCommonString(
+ signedMessageShares.map((s) => s.publicKey)
110
+ );
111
+ const _dataSigned = mostCommonString(
112
+ signedMessageShares.map((s) => s.dataSigned)
113
114
115
if (!_publicKey || !_dataSigned) {
116
throw new Error('No valid publicKey or dataSigned found');
0 commit comments