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 491a744 + fbd5da2 commit 44ec44bCopy full SHA for 44ec44b
src/components/Multisig/SignMultisigTx.tsx
@@ -273,7 +273,7 @@ async function getDecodedUnsignedTx(
273
const unlockScript = decodedTx.unsignedTx.inputs[0].unlockScript
274
const fromSameAddress = decodedTx.unsignedTx.inputs
275
.slice(1)
276
- .every((i) => i.unlockScript === unlockScript)
+ .every((i) => i.unlockScript === unlockScript || i.unlockScript === '03') // '03' is SameAsPrevious
277
if (!fromSameAddress) {
278
throw new Error(`Invalid unsigned tx, the input from different address`)
279
}
0 commit comments