Skip to content

Commit 841c73a

Browse files
zmalatraxunknownunknown1
authored andcommitted
refactor: change variable name
1 parent 1dea136 commit 841c73a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contracts/deploy/00-home-chain-arbitration.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,15 +184,15 @@ const deployArbitration: DeployFunction = async (hre: HardhatRuntimeEnvironment)
184184
"VRFSubscriptionManagerV2Mock"
185185
)) as VRFSubscriptionManagerV2Mock;
186186
await vrfSubscriptionManagerContract.topUpSubscription(BigNumber.from(10).pow(20)); // 100 LINK
187-
const subId = await vrfSubscriptionManagerContract.subscriptionId();
187+
const subscriptionId = await vrfSubscriptionManagerContract.subscriptionId();
188188
const vrfConsumer = await deploy("VRFConsumerV2", {
189189
from: deployer,
190190
args: [
191191
deployer,
192192
vrfCoordinator,
193193
sortitionModule.address,
194194
keyHash,
195-
subId,
195+
subscriptionId,
196196
requestConfirmations,
197197
callbackGasLimit,
198198
numWords,

0 commit comments

Comments
 (0)