Skip to content

Commit

Permalink
Merge pull request #76 from rsksmart/disable-whitelisting
Browse files Browse the repository at this point in the history
Delete old disable lock whitelist file and created a new to disable t…
  • Loading branch information
marcos-iov authored Sep 9, 2024
2 parents 06a195a + d2bb417 commit 8f012ff
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 108 deletions.
22 changes: 22 additions & 0 deletions tests/00_00_02-disable_lock_whitelist.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
const { disableWhitelisting } = require('../lib/2wp-utils');
const { getRskTransactionHelpers } = require('../lib/rsk-tx-helper-provider');
const { getBtcClient } = require('../lib/btc-client-provider');

describe('Disable lock whitelisting', function() {

let rskTxHelper;
let btcTxHelper;

before(async () => {

const rskTxHelpers = getRskTransactionHelpers();
rskTxHelper = rskTxHelpers[0];
btcTxHelper = getBtcClient();

});

it('should disable lock whitelist', async () => {
await disableWhitelisting(rskTxHelper, btcTxHelper);
});

});
108 changes: 0 additions & 108 deletions tests/01_03_52-disable_lock_whitelist.js

This file was deleted.

0 comments on commit 8f012ff

Please sign in to comment.