-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #76 from rsksmart/disable-whitelisting
Delete old disable lock whitelist file and created a new to disable t…
- Loading branch information
Showing
2 changed files
with
22 additions
and
108 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | ||
}); | ||
|
||
}); |
This file was deleted.
Oops, something went wrong.