File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -173,15 +173,15 @@ const deployArbitration: DeployFunction = async (hre: HardhatRuntimeEnvironment)
173173 "VRFSubscriptionManagerV2Mock"
174174 ) ) as VRFSubscriptionManagerV2Mock ;
175175 await vrfSubscriptionManagerContract . topUpSubscription ( BigNumber . from ( 10 ) . pow ( 20 ) ) ; // 100 LINK
176- const subId = await vrfSubscriptionManagerContract . subscriptionId ( ) ;
176+ const subscriptionId = await vrfSubscriptionManagerContract . subscriptionId ( ) ;
177177 const vrfConsumer = await deploy ( "VRFConsumerV2" , {
178178 from : deployer ,
179179 args : [
180180 deployer ,
181181 vrfCoordinator ,
182182 sortitionModule . address ,
183183 keyHash ,
184- subId ,
184+ subscriptionId ,
185185 requestConfirmations ,
186186 callbackGasLimit ,
187187 numWords ,
You can’t perform that action at this time.
0 commit comments