We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8fdd57 commit f5870b2Copy full SHA for f5870b2
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