Skip to content

Commit

Permalink
Remove usage of MINIMUM_PEGIN_VALUE_IN_BTC constant in 01_03_06-2wp_n…
Browse files Browse the repository at this point in the history
…o_locking_cap
  • Loading branch information
marcos-iov committed Sep 19, 2023
1 parent e6397b5 commit 33efa95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/01_03_06-2wp_no_locking_cap.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const expect = require('chai').expect
const rskUtils = require('../lib/rsk-utils');
const { getRskTransactionHelpers } = require('../lib/rsk-tx-helper-provider');
const { getBtcClient } = require('../lib/btc-client-provider');
const { sendPegin, ensurePeginIsRegistered, sendTxToBridge, MINIMUM_PEGIN_VALUE_IN_BTC } = require('../lib/2wp-utils');
const { sendPegin, ensurePeginIsRegistered, sendTxToBridge } = require('../lib/2wp-utils');
const { getBridge, getLatestActiveForkName } = require('../lib/precompiled-abi-forks-util');
const { getDerivedRSKAddressInformation } = require('@rsksmart/btc-rsk-derivation');
const btcEthUnitConverter = require('btc-eth-unit-converter');
Expand All @@ -14,7 +14,7 @@ describe('Transfer BTC to RBTC before papyrus200', function() {
let btcTxHelper;
let rskTxHelper;

const PEGIN_VALUE_IN_BTC = 3 * MINIMUM_PEGIN_VALUE_IN_BTC;
const PEGIN_VALUE_IN_BTC = 3;
const PEGOUT_VALUE_IN_RBTC = PEGIN_VALUE_IN_BTC / 3;
const RSK_TX_FEE_IN_RBTC = 0.001;

Expand Down

0 comments on commit 33efa95

Please sign in to comment.