@multiversx/sdk-dapp-liquidity 1.1.0-alpha.16 → 1.1.0-alpha.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -402,6 +402,13 @@ const BridgeForm = ({
|
|
|
402
402
|
feePayer: transaction.feePayer,
|
|
403
403
|
instructions: transaction.instructions
|
|
404
404
|
});
|
|
405
|
+
if (!txHash) {
|
|
406
|
+
break;
|
|
407
|
+
}
|
|
408
|
+
signedTransactions.push({
|
|
409
|
+
...transaction,
|
|
410
|
+
txHash
|
|
411
|
+
});
|
|
405
412
|
break;
|
|
406
413
|
case types_chainType.ChainType.evm:
|
|
407
414
|
txHash = await evm.signTransaction({
|
|
@@ -399,6 +399,13 @@ const BridgeForm = ({
|
|
|
399
399
|
feePayer: transaction.feePayer,
|
|
400
400
|
instructions: transaction.instructions
|
|
401
401
|
});
|
|
402
|
+
if (!txHash) {
|
|
403
|
+
break;
|
|
404
|
+
}
|
|
405
|
+
signedTransactions.push({
|
|
406
|
+
...transaction,
|
|
407
|
+
txHash
|
|
408
|
+
});
|
|
402
409
|
break;
|
|
403
410
|
case ChainType.evm:
|
|
404
411
|
txHash = await evm.signTransaction({
|