We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2982b7c + f5870b2 commit 9263bc1Copy full SHA for 9263bc1
modules/sdk-api/src/v1/wallet.ts
@@ -965,8 +965,7 @@ Wallet.prototype.signTransaction = function (params, callback) {
965
const psbtHex = params.psbt || params.transactionHex;
966
return tryPromise(() => signPsbtRequest({ psbt: psbtHex, keychain: params.keychain }))
967
.then(function (result) {
968
- // Return result with transactionHex containing the signed PSBT for consistency
969
- return { tx: result.psbt, transactionHex: result.psbt };
+ return { tx: result.psbt };
970
})
971
.then(callback)
972
.catch(callback);
0 commit comments