Skip to content

Commit c33a4e9

Browse files
committed
Skipping pegin refund tests
1 parent f599938 commit c33a4e9

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

lib/tests/2wp.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ const execute = (description) => {
6767
after(async () => {
6868

6969
// Ensure there's no pegout txs left to be processed
70-
await triggerRelease(rskTxHelpers, btcTxHelper);
70+
await triggerRelease(rskTxHelpers, btcTxHelper, {}, false);
7171

7272
});
7373

@@ -194,7 +194,7 @@ const execute = (description) => {
194194

195195
const btcPeginTxHash = await sendPeginToActiveFederation(rskTxHelper, btcTxHelper, senderRecipientInfo.btcSenderAddressInfo, Number(satoshisToBtc(peginValueInSatoshis)));
196196
// Funds of a pegin with value below minimum are lost. But calling triggerRelease here to ensure that nothing will be refunded.
197-
await triggerRelease(rskTxHelpers, btcTxHelper);
197+
await triggerRelease(rskTxHelpers, btcTxHelper, {}, false);
198198

199199
// Assert
200200

@@ -236,7 +236,7 @@ const execute = (description) => {
236236

237237
const btcPeginTxHash = await sendPeginToActiveFederation(rskTxHelper, btcTxHelper, senderRecipientInfo.btcSenderAddressInfo, satoshisToBtc(peginValueInSatoshis), peginV1Data);
238238
// Funds of a pegin with value below minimum are lost. But calling triggerRelease here to ensure that nothing will be refunded.
239-
await triggerRelease(rskTxHelpers, btcTxHelper);
239+
await triggerRelease(rskTxHelpers, btcTxHelper, {}, false);
240240

241241
// Assert
242242

@@ -258,7 +258,7 @@ const execute = (description) => {
258258

259259
});
260260

261-
it('should reject and refund a legacy pegin from a multisig account with the value exactly minimum', async () => {
261+
it.skip('should reject and refund a legacy pegin from a multisig account with the value exactly minimum', async () => {
262262

263263
// Arrange
264264

@@ -295,7 +295,7 @@ const execute = (description) => {
295295

296296
});
297297

298-
it('should reject and not refund a legacy pegin from a multisig account with the value exactly below minimum', async () => {
298+
it.skip('should reject and not refund a legacy pegin from a multisig account with the value exactly below minimum', async () => {
299299

300300
// Arrange
301301

@@ -486,7 +486,7 @@ const execute = (description) => {
486486

487487
});
488488

489-
it('should reject and refund pegin with multiple OP_RETURN outputs for RSK with value exactly minimum', async () => {
489+
it.skip('should reject and refund pegin with multiple OP_RETURN outputs for RSK with value exactly minimum', async () => {
490490

491491
// Arrange
492492

@@ -574,7 +574,7 @@ const execute = (description) => {
574574

575575
});
576576

577-
it('should reject and refund pegin with OP_RETURN output to RSK with invalid payload with value exactly minimum', async () => {
577+
it.skip('should reject and refund pegin with OP_RETURN output to RSK with invalid payload with value exactly minimum', async () => {
578578

579579
// Arrange
580580

@@ -618,7 +618,7 @@ const execute = (description) => {
618618

619619
});
620620

621-
it('should reject and refund pegin with invalid pegin v1 version with value exactly minimum', async () => {
621+
it.skip('should reject and refund pegin with invalid pegin v1 version with value exactly minimum', async () => {
622622

623623
// Arrange
624624

0 commit comments

Comments
 (0)