@atomiqlabs/lp-lib 15.0.0 → 15.0.2
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.
|
@@ -372,6 +372,7 @@ class SpvVaultSwapHandler extends SwapHandler_1.SwapHandler {
|
|
|
372
372
|
data.executionFeeRate !== swap.executionFeeShare ||
|
|
373
373
|
data.rawAmounts[0] !== swap.rawAmountToken ||
|
|
374
374
|
data.rawAmounts[1] !== swap.rawAmountGasToken ||
|
|
375
|
+
data.getExecutionData() != null ||
|
|
375
376
|
data.getSpentVaultUtxo() !== swap.vaultUtxo ||
|
|
376
377
|
data.btcTx.outs[0].value !== SpvVaults_1.VAULT_DUST_AMOUNT ||
|
|
377
378
|
!Buffer.from(data.btcTx.outs[0].scriptPubKey.hex, "hex").equals(this.bitcoin.toOutputScript(swap.vaultAddress)) ||
|
package/package.json
CHANGED
|
@@ -502,6 +502,7 @@ export class SpvVaultSwapHandler extends SwapHandler<SpvVaultSwap, SpvVaultSwapS
|
|
|
502
502
|
data.executionFeeRate!==swap.executionFeeShare ||
|
|
503
503
|
data.rawAmounts[0]!==swap.rawAmountToken ||
|
|
504
504
|
data.rawAmounts[1]!==swap.rawAmountGasToken ||
|
|
505
|
+
data.getExecutionData()!=null ||
|
|
505
506
|
data.getSpentVaultUtxo()!==swap.vaultUtxo ||
|
|
506
507
|
data.btcTx.outs[0].value!==VAULT_DUST_AMOUNT ||
|
|
507
508
|
!Buffer.from(data.btcTx.outs[0].scriptPubKey.hex, "hex").equals(this.bitcoin.toOutputScript(swap.vaultAddress)) ||
|