Skip to content

Commit

Permalink
Renames variable.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy-then committed Nov 7, 2024
1 parent 9d7372e commit bc9cb09
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/tests/2wp.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const { sendPegin,
createExpectedReleaseRequestRejectedEvent,
} = require('../2wp-utils');
const { getBtcAddressBalanceInSatoshis } = require('../btc-utils');
const { ensure0x, removePrefix0x, wait } = require('../utils');
const { ensure0x, removePrefix0x } = require('../utils');
const { getBridgeState } = require('@rsksmart/bridge-state-data-parser');
const bitcoinJsLib = require('bitcoinjs-lib');
const { deployCallReleaseBtcContract } = require('../contractDeployer');
Expand Down Expand Up @@ -938,8 +938,8 @@ const execute = (description, getRskHost) => {
const pegout3ValueInSatoshis = MINIMUM_PEGOUT_AMOUNT_IN_SATOSHIS + 150_000;
const totalPegoutValueInSatoshis = pegout1ValueInSatoshis + pegout2ValueInSatoshis + pegout3ValueInSatoshis;

const rskMemPoolTxHashes1 = await getRskMempoolTransactionHashes(rskTxHelper);
const initialRskMempoolTxHashesSize = rskMemPoolTxHashes1.length;
const rskMemPoolTxHashes = await getRskMempoolTransactionHashes(rskTxHelper);
const initialRskMempoolTxHashesSize = rskMemPoolTxHashes.length;

// Act

Expand Down

0 comments on commit bc9cb09

Please sign in to comment.